forked from AuroraMiddleware/gtk
ed65ab1ba9
Build the .rc files for Windows so that one can track the version info more easily for Windows, as well as giving GTK+ apps a default icon. Also, move back the manifest embedding for the themed Windows print dialog back into gtk-win32.rc.body.in, so that we just have one way of embedding this manifest file, making things easier for ourselves, as this is supported in the later Visual Studio compilers as well, which is 2013 and later.
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
#include <winuser.h>
|
|
#include <winver.h>
|
|
|
|
GTK_ICON ICON "gtk.ico"
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION @GTK_MAJOR_VERSION@,@GTK_MINOR_VERSION@,@GTK_MICRO_VERSION@,0
|
|
PRODUCTVERSION @GTK_MAJOR_VERSION@,@GTK_MINOR_VERSION@,@GTK_MICRO_VERSION@,0
|
|
FILEFLAGSMASK 0
|
|
FILEFLAGS 0
|
|
FILEOS VOS__WINDOWS32
|
|
FILETYPE VFT_DLL
|
|
FILESUBTYPE VFT2_UNKNOWN
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904B0"
|
|
BEGIN
|
|
VALUE "CompanyName", "The GTK developer community"
|
|
VALUE "FileDescription", "GIMP Toolkit"
|
|
VALUE "FileVersion", "@GTK_VERSION@.0"
|
|
VALUE "InternalName", "libgtk-win32-@GTK_API_VERSION@"
|
|
VALUE "LegalCopyright", "Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald. Modified by the GTK+ Team and others 1997-2011."
|
|
VALUE "OriginalFilename", "libgtk-win32-@GTK_API_VERSION@.dll"
|
|
VALUE "ProductName", "GTK+"
|
|
VALUE "ProductVersion", "@GTK_VERSION@"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1200
|
|
END
|
|
END
|
|
|
|
ISOLATIONAWARE_MANIFEST_RESOURCE_ID RT_MANIFEST libgtk4.manifest |