f206839636
- Get rid of VER_STRING since it's the same as VERSION - Add new defines VER_MAJOR, VER_MINOR, VER_PATCH and VER_SVN and use them for the version number on Windows. - TODO: Add the capability to detect installed version to the Windows installer.
21 lines
485 B
Plaintext
21 lines
485 B
Plaintext
1 VERSIONINFO
|
|
FILEVERSION @VER_MAJOR@, @VER_MINOR@, @VER_PATCH@, @VER_SVN@
|
|
{
|
|
BLOCK "StringFileInfo"
|
|
{
|
|
BLOCK "040904B0"
|
|
{
|
|
VALUE "FileDescription", "The cross platform IA-32 emulator"
|
|
VALUE "FileVersion", "@VERSION@"
|
|
VALUE "LegalCopyright", "Copyright \251 2001-2019 The Bochs Project"
|
|
VALUE "ProductName", "Bochs"
|
|
VALUE "ProductVersion", "@REL_STRING@"
|
|
VALUE "OriginalFilename", "BOCHS.EXE"
|
|
}
|
|
}
|
|
BLOCK "VarFileInfo"
|
|
{
|
|
VALUE "Translation", 1033, 1300
|
|
}
|
|
}
|