forked from AuroraMiddleware/gtk
3481ebdafb
The rc.exe that comes with the Windows 11 SDK does not allow one to include winuser.h directly in the .rc scripts, so make sure that it is not included by gtk-win32.rc.body.in, but instead include windows.h with WIN32_LEAN_AND_MEAN defined.
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.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 |