-
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.
Add a new clean-slate resource file, leaving the Visual Studio-generated one alone. Define the icon and version metadata. Make autoconf/automake build and link the resource file when doing a Windows build. Closes #4.
- Loading branch information
Showing
3 changed files
with
47 additions
and
1 deletion.
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,37 @@ | ||
#include <windows.h> | ||
|
||
#define VERSION_NUM 2005,11,11,1 | ||
#define VERSION_STR "20051111.1" | ||
|
||
//VS_VERSION_INFO VERSIONINFO | ||
1 VERSIONINFO | ||
FILEVERSION VERSION_NUM | ||
PRODUCTVERSION VERSION_NUM | ||
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK | ||
FILEFLAGS 0 | ||
FILEOS VOS__WINDOWS32 | ||
FILETYPE VFT_APP | ||
FILESUBTYPE 0 | ||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "040904E4" | ||
BEGIN | ||
VALUE "CompanyName", "Digital Eel / LionsPhil" | ||
VALUE "FileDescription", "Strange Adventures in Infinite Space (LionsPhil fork)" | ||
VALUE "FileVersion", VERSION_STR | ||
VALUE "InternalName", "strangelp" | ||
VALUE "LegalCopyright", "Copyright Digital Eel et. al.; licensed under the terms of the GNU GPL" | ||
VALUE "OriginalFilename", "strangelp.exe" | ||
VALUE "ProductName", "Strange Adventures in Infinite Space" | ||
VALUE "ProductVersion", VERSION_STR | ||
END | ||
END | ||
|
||
BLOCK "VarFileInfo" | ||
BEGIN | ||
VALUE "Translation", 0x409, 1252 | ||
END | ||
END | ||
|
||
2 ICON "../winicon.ico" |