mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 21:12:20 +00:00
718112a8fe
Currently none of these is being used, but eventually they will, once more code gets ported over. So it's better to have them right away and avoid editing the project file too much, only to revert that later.
40 lines
1.1 KiB
Text
40 lines
1.1 KiB
Text
#include <winver.h>
|
|
#include "../zlib.h"
|
|
|
|
#ifdef GCC_WINDRES
|
|
VS_VERSION_INFO VERSIONINFO
|
|
#else
|
|
VS_VERSION_INFO VERSIONINFO MOVEABLE IMPURE LOADONCALL DISCARDABLE
|
|
#endif
|
|
FILEVERSION ZLIB_VER_MAJOR,ZLIB_VER_MINOR,ZLIB_VER_REVISION,0
|
|
PRODUCTVERSION ZLIB_VER_MAJOR,ZLIB_VER_MINOR,ZLIB_VER_REVISION,0
|
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
#ifdef _DEBUG
|
|
FILEFLAGS 1
|
|
#else
|
|
FILEFLAGS 0
|
|
#endif
|
|
FILEOS VOS__WINDOWS32
|
|
FILETYPE VFT_DLL
|
|
FILESUBTYPE 0 // not used
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904E4"
|
|
//language ID = U.S. English, char set = Windows, Multilingual
|
|
BEGIN
|
|
VALUE "FileDescription", "zlib data compression library\0"
|
|
VALUE "FileVersion", ZLIB_VERSION "\0"
|
|
VALUE "InternalName", "zlib1.dll\0"
|
|
VALUE "LegalCopyright", "(C) 1995-2017 Jean-loup Gailly & Mark Adler\0"
|
|
VALUE "OriginalFilename", "zlib1.dll\0"
|
|
VALUE "ProductName", "zlib\0"
|
|
VALUE "ProductVersion", ZLIB_VERSION "\0"
|
|
VALUE "Comments", "For more information visit http://www.zlib.net/\0"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x0409, 1252
|
|
END
|
|
END
|