Index: build/premake/premake5.lua =================================================================== --- build/premake/premake5.lua +++ build/premake/premake5.lua @@ -969,6 +969,7 @@ if os.istarget("windows") then files { source_root.."lib/sysdep/os/win/icon.rc" } + files { source_root.."lib/sysdep/os/win/pyrogenesis.rc" } -- from "lowlevel" static lib; must be added here to be linked in files { source_root.."lib/sysdep/os/win/error_dialog.rc" } Index: source/lib/sysdep/os/win/pyrogenesis.rc =================================================================== --- source/lib/sysdep/os/win/pyrogenesis.rc +++ source/lib/sysdep/os/win/pyrogenesis.rc @@ -0,0 +1,37 @@ +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +VS_VERSION_INFO VERSIONINFO + FILEVERSION 0,0,24,0 + PRODUCTVERSION 0,0,24,0 + FILEFLAGSMASK 0x3fL +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x40004L + FILETYPE 0x1L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040c04b0" + BEGIN + VALUE "CompanyName", "Wildfire Games" + VALUE "FileDescription", "0 A.D. : Empires Ascendant" + VALUE "FileVersion", "0.0.24.0" + VALUE "InternalName", "pyrogenesis.rc" + VALUE "LegalCopyright", "Copyright (C) 2019 Wildfire Games" + VALUE "OriginalFilename", "pyrogenesis.rc" + VALUE "ProductName", "0 A.D. : Empires Ascendant" + VALUE "ProductVersion", "0.0.24.0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x40c, 1200 + END +END