-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix resource (.rc2) so 64-bit version has distinct name in file properties
- Loading branch information
1 parent
205f2bf
commit 5ddc09f
Showing
6 changed files
with
261 additions
and
50 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
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
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,69 @@ | ||
// | ||
// TRIPLIGHTFF.RC2 - resources Microsoft Visual C++ does not edit directly | ||
// | ||
|
||
#ifdef APSTUDIO_INVOKED | ||
#error this file is not editable by Microsoft Visual C++ | ||
#endif //APSTUDIO_INVOKED | ||
|
||
#define STRINGIFY(x) #x | ||
#define VERSION_STRING(a, b, c, d) STRINGIFY(a) "." STRINGIFY(b) "." STRINGIFY(c) "." STRINGIFY(d) | ||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
// Add manually edited resources here... | ||
|
||
// DON'T FORGET TO CHANGE VERSION.H | ||
// | ||
#define MAJOR_VERSION 1 | ||
#define MINOR_VERSION 0 | ||
#define MAJOR_SUBVERSION 0 | ||
#define MINOR_SUBVERSION 15 | ||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Version | ||
// | ||
|
||
VS_VERSION_INFO VERSIONINFO | ||
FILEVERSION MAJOR_VERSION, MINOR_VERSION, MAJOR_SUBVERSION, MINOR_SUBVERSION | ||
PRODUCTVERSION MAJOR_VERSION, MINOR_VERSION, MAJOR_SUBVERSION, MINOR_SUBVERSION | ||
FILEFLAGSMASK 0x3fL | ||
#ifdef _DEBUG | ||
FILEFLAGS 0x1L | ||
#else | ||
FILEFLAGS 0x0L | ||
#endif | ||
FILEOS 0x4L | ||
FILETYPE 0x1L | ||
FILESUBTYPE 0x0L | ||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "040904b0" | ||
BEGIN | ||
VALUE "Comments", "GNU GPL v2.0\0" | ||
VALUE "CompanyName", "Anal Software\0" | ||
#ifdef _WIN64 | ||
VALUE "FileDescription", "TripLight Freeframe GL Plugin (x64)\0" | ||
#else | ||
VALUE "FileDescription", "TripLight Freeframe GL Plugin (VS2008 SSE2)\0" | ||
#endif | ||
VALUE "FileVersion", VERSION_STRING(MAJOR_VERSION, MINOR_VERSION, MAJOR_SUBVERSION, MINOR_SUBVERSION) | ||
VALUE "InternalName", "TripLightFF\0" | ||
VALUE "LegalCopyright", "Copyleft 2016 Chris Korda\0" | ||
VALUE "OriginalFilename", "TripLightFF.DLL\0" | ||
#ifdef _WIN64 | ||
VALUE "ProductName", "TripLightFF (x64)\0" | ||
#else | ||
VALUE "ProductName", "TripLightFF\0" | ||
#endif | ||
VALUE "ProductVersion", VERSION_STRING(MAJOR_VERSION, MINOR_VERSION, MAJOR_SUBVERSION, MINOR_SUBVERSION) | ||
END | ||
END | ||
BLOCK "VarFileInfo" | ||
BEGIN | ||
VALUE "Translation", 0x409, 1200 | ||
END | ||
END |
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
Oops, something went wrong.