mirror of
https://github.com/GerbilSoft/mst06.git
synced 2025-06-18 19:45:32 -04:00

Added an internal copy of TinyXML2 for Windows builds. Based on the rom-properties build. main.cpp: Replace the file extension on the source file with .xml and use that as the destination filename.
48 lines
1.2 KiB
Plaintext
48 lines
1.2 KiB
Plaintext
#include <windows.h>
|
|
|
|
#define TINYXML2_VERSION_NUMERIC 7,0,1,0
|
|
#define TINYXML2_VERSION_STRING "7.0.1"
|
|
|
|
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION TINYXML2_VERSION_NUMERIC
|
|
PRODUCTVERSION TINYXML2_VERSION_NUMERIC
|
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
#ifdef _DEBUG
|
|
FILEFLAGS VS_FF_DEBUG
|
|
#else
|
|
FILEFLAGS 0
|
|
#endif
|
|
FILEOS VOS__WINDOWS32
|
|
FILETYPE VFT_DLL
|
|
FILESUBTYPE 0 // not used
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904B0"
|
|
//language ID = U.S. English, char set = Unicode
|
|
BEGIN
|
|
VALUE "FileDescription", "TinyXML-2\0"
|
|
VALUE "FileVersion", TINYXML2_VERSION_STRING "\0"
|
|
#ifdef _DEBUG
|
|
VALUE "InternalName", "tinyxml2d.dll\0"
|
|
#else
|
|
VALUE "InternalName", "tinyxml2.dll\0"
|
|
#endif
|
|
VALUE "LegalCopyright", "(C) 2000-2018 Lee Thomason\0"
|
|
#ifdef _DEBUG
|
|
VALUE "OriginalFilename", "tinyxml2d.dll\0"
|
|
#else
|
|
VALUE "OriginalFilename", "tinyxml2.dll\0"
|
|
#endif
|
|
VALUE "ProductName", "TinyXML-2\0"
|
|
VALUE "ProductVersion", TINYXML2_VERSION_STRING "\0"
|
|
VALUE "Comments", "For more information visit https://github.com/leethomason/tinyxml2\0"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x0409, 1252
|
|
END
|
|
END
|