-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add build targets for Warhead and Wars
- Loading branch information
Showing
10 changed files
with
145 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// Crysis Warhead launcher resources | ||
|
||
#include <winver.h> | ||
|
||
#include "Launcher/Game/Resources.h" | ||
#include "Project.h" | ||
|
||
RESOURCE_ICON ICON "CrysisWarhead.ico" | ||
|
||
RESOURCE_CURSOR_AMBER CURSOR "CursorAmber.cur" | ||
RESOURCE_CURSOR_BLUE CURSOR "CursorBlue.cur" | ||
RESOURCE_CURSOR_GREEN CURSOR "CursorGreen.cur" | ||
RESOURCE_CURSOR_RED CURSOR "CursorRed.cur" | ||
RESOURCE_CURSOR_WHITE CURSOR "CursorWhite.cur" | ||
|
||
VS_VERSION_INFO VERSIONINFO | ||
FILEVERSION PROJECT_VERSION, 0, 0, 0 | ||
PRODUCTVERSION PROJECT_VERSION, 0, 0, 0 | ||
FILEOS VOS__WINDOWS32 | ||
FILETYPE VFT_APP | ||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "040904E4" | ||
BEGIN | ||
VALUE "CompanyName", "Crytek GmbH" | ||
VALUE "LegalCopyright", "(C) 2007 Crytek GmbH" | ||
VALUE "ProductName", "C1-Launcher" | ||
VALUE "ProductVersion", PROJECT_VERSION_STRING | ||
VALUE "FileVersion", PROJECT_VERSION_STRING | ||
VALUE "FileDescription", "Crysis Warhead" | ||
VALUE "InternalName", "CrysisWarheadLauncher" | ||
VALUE "OriginalFilename", "CrysisWarheadLauncher.exe" | ||
END | ||
END | ||
|
||
BLOCK "VarFileInfo" | ||
BEGIN | ||
VALUE "Translation", 0x409, 1252 | ||
END | ||
END |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// Crysis Wars launcher resources | ||
|
||
#include <winver.h> | ||
|
||
#include "Launcher/Game/Resources.h" | ||
#include "Project.h" | ||
|
||
RESOURCE_ICON ICON "CrysisWars.ico" | ||
|
||
RESOURCE_CURSOR_AMBER CURSOR "CursorAmber.cur" | ||
RESOURCE_CURSOR_BLUE CURSOR "CursorBlue.cur" | ||
RESOURCE_CURSOR_GREEN CURSOR "CursorGreen.cur" | ||
RESOURCE_CURSOR_RED CURSOR "CursorRed.cur" | ||
RESOURCE_CURSOR_WHITE CURSOR "CursorWhite.cur" | ||
|
||
VS_VERSION_INFO VERSIONINFO | ||
FILEVERSION PROJECT_VERSION, 0, 0, 0 | ||
PRODUCTVERSION PROJECT_VERSION, 0, 0, 0 | ||
FILEOS VOS__WINDOWS32 | ||
FILETYPE VFT_APP | ||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "040904E4" | ||
BEGIN | ||
VALUE "CompanyName", "Crytek GmbH" | ||
VALUE "LegalCopyright", "(C) 2007 Crytek GmbH" | ||
VALUE "ProductName", "C1-Launcher" | ||
VALUE "ProductVersion", PROJECT_VERSION_STRING | ||
VALUE "FileVersion", PROJECT_VERSION_STRING | ||
VALUE "FileDescription", "Crysis Wars" | ||
VALUE "InternalName", "Crysis" | ||
VALUE "OriginalFilename", "Crysis.exe" | ||
END | ||
END | ||
|
||
BLOCK "VarFileInfo" | ||
BEGIN | ||
VALUE "Translation", 0x409, 1252 | ||
END | ||
END |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.