mirror of
https://github.com/kennethreitz/super-sphere.git
synced 2026-06-20 23:20:56 +00:00
73 lines
3.6 KiB
Plaintext
73 lines
3.6 KiB
Plaintext
/**
|
|
* Don't forget to save this file in little-endian UTF-16.
|
|
*/
|
|
|
|
#define STRINGIFY(x) #x
|
|
#define TOSTRING(x) STRINGIFY(x)
|
|
|
|
/**
|
|
* When defined, LOVE_BUILD is used as the fourth file version number
|
|
* and at the end of the FileVersion string. This is a good place for the
|
|
* commit number of the repository to make it easier to identify the code that
|
|
* was used for the binaries. It must be a positive integer below 65536.
|
|
*/
|
|
#ifndef LOVE_BUILD
|
|
#define LOVE_BUILD 0
|
|
#endif
|
|
|
|
|
|
#define LOVE_VERSION_STRING "0.10.2"
|
|
#define LOVE_MAJOR 0
|
|
#define LOVE_MINOR 10
|
|
#define LOVE_REVISION 2
|
|
|
|
#if defined liblove_EXPORTS && !defined LOVE_LIB
|
|
#define LOVE_LIB 1
|
|
#endif
|
|
|
|
#ifdef LOVE_LIB
|
|
#define FILE_DESC "libLÖVE"
|
|
#define FILE_NAME "love.dll"
|
|
#else
|
|
#define FILE_DESC "LÖVE"
|
|
#define FILE_NAME "love.exe"
|
|
1 ICON "love.ico"
|
|
#endif
|
|
|
|
|
|
1 VERSIONINFO
|
|
FILEVERSION LOVE_MAJOR, LOVE_MINOR, LOVE_REVISION, LOVE_BUILD
|
|
PRODUCTVERSION LOVE_MAJOR, LOVE_MINOR, LOVE_REVISION, 0
|
|
FILEFLAGSMASK 0
|
|
FILEOS 0x00040004L // VOS_NT_WINDOWS32
|
|
#ifdef LOVE_LIB
|
|
FILETYPE 2 // VFT_DLL
|
|
#else
|
|
FILETYPE 1 // VFT_APP
|
|
#endif
|
|
|
|
{
|
|
BLOCK "StringFileInfo"
|
|
{
|
|
BLOCK "040904b0"
|
|
{
|
|
VALUE "FileDescription", FILE_DESC " " LOVE_VERSION_STRING
|
|
VALUE "FileVersion", LOVE_VERSION_STRING
|
|
#if LOVE_BUILD > 0
|
|
" r" TOSTRING(LOVE_BUILD)
|
|
#endif
|
|
VALUE "CompanyName", "LÖVE World Domination Inc."
|
|
VALUE "LegalCopyright", "Copyright © 2006-2016 LÖVE Development Team"
|
|
VALUE "ProductName", "LÖVE"
|
|
VALUE "ProductVersion", LOVE_VERSION_STRING
|
|
VALUE "InternalName", ""
|
|
VALUE "OriginalFilename", FILE_NAME
|
|
}
|
|
}
|
|
|
|
BLOCK "VarFileInfo"
|
|
{
|
|
VALUE "Translation", 0x409, 1252
|
|
}
|
|
}
|