mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-01-17 14:28:30 +01:00
a637a619c9
So 1ef0c1a3e0a2 didn't help at all, great. Either I'm terrible enough at C++ to get the same thing wrong twice, or this is a mingw bug, in which case I'm not willing to waste time trying to figure it out.
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
#pragma code_page(65001) // UTF-8
|
|
|
|
#include "@RESOUCE_H@"
|
|
#include <winuser.h>
|
|
#include <winver.h>
|
|
#include <ntdef.h>
|
|
|
|
#define HAVE_ICONS @HAVE_ICONS@
|
|
#if HAVE_ICONS
|
|
IDI_ICON ICON DISCARDABLE "@ICON_EXE_ICO@"
|
|
IDI_DOC_ICON ICON DISCARDABLE "@ICON_CPS_ICO@"
|
|
#endif
|
|
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "@WINUTF8_XML@"
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION @DISPLAY_VERSION_MAJOR@,@DISPLAY_VERSION_MINOR@,0,@BUILD_NUM@
|
|
PRODUCTVERSION @DISPLAY_VERSION_MAJOR@,@DISPLAY_VERSION_MINOR@,0,@BUILD_NUM@
|
|
{
|
|
BLOCK "StringFileInfo"
|
|
{
|
|
BLOCK "040904b0"
|
|
{
|
|
VALUE "CompanyName", "https://powdertoy.co.uk/\0"
|
|
VALUE "FileDescription", "@APPNAME@\0"
|
|
VALUE "FileVersion", "@DISPLAY_VERSION_MAJOR@.@DISPLAY_VERSION_MINOR@.0.@BUILD_NUM@\0"
|
|
VALUE "OriginalFilename", "@APPEXE@.exe\0"
|
|
VALUE "LegalCopyright", "@MANIFEST_COPYRIGHT@\0"
|
|
VALUE "ProductName", "@APPCOMMENT@\0"
|
|
VALUE "ProductVersion", "@DISPLAY_VERSION_MAJOR@.@DISPLAY_VERSION_MINOR@.0.@BUILD_NUM@\0"
|
|
VALUE "InternalName", "@APPID@\0"
|
|
}
|
|
}
|
|
BLOCK "VarFileInfo"
|
|
{
|
|
VALUE "Translation", 0x409, 65001
|
|
}
|
|
}
|