-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upd: static build compile option for windows; add: executable version…
… info
- Loading branch information
Showing
3 changed files
with
59 additions
and
34 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,26 @@ | ||
#define VER_FILEVERSION 1,0,5 | ||
#define VER_FILEVERSION_STR "1.0.5" | ||
|
||
|
||
VS_VERSION_INFO VERSIONINFO | ||
FILEVERSION VER_FILEVERSION | ||
PRODUCTVERSION VER_FILEVERSION | ||
{ | ||
BLOCK "StringFileInfo" | ||
{ | ||
BLOCK "040904E4" | ||
{ | ||
VALUE "CompanyName", "https://regular-dev.org" | ||
VALUE "FileVersion", VER_FILEVERSION_STR | ||
VALUE "FileDescription", "Biplanes Revival" | ||
VALUE "LegalCopyright", "Copyright (C) 2023 https://regular-dev.org community" | ||
VALUE "OriginalFilename", "Biplanes.exe" | ||
VALUE "ProductName", "Biplanes Revival" | ||
VALUE "ProductVersion", VER_FILEVERSION_STR | ||
} | ||
} | ||
BLOCK "VarFileInfo" | ||
{ | ||
VALUE "Translation", 0x0409, 1252 | ||
} | ||
} |