]> Dogcows Code - chaz/yoink/blobdiff - src/win32.rc
build system enhancements
[chaz/yoink] / src / win32.rc
diff --git a/src/win32.rc b/src/win32.rc
new file mode 100644 (file)
index 0000000..25ca5d5
--- /dev/null
@@ -0,0 +1,43 @@
+
+//
+// Yoink
+// Compile this file with windres and link with the executable.
+//
+
+#include <winver.h>
+#include "config.h"
+
+1 VERSIONINFO
+FILEVERSION            VERSION_MAJOR,VERSION_MINOR,VERSION_REVISION,0
+PRODUCTVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_REVISION,0
+FILEFLAGSMASK  VS_FFI_FILEFLAGSMASK
+#if NDEBUG
+       FILEFLAGS       0
+#else
+       FILEFLAGS       VS_FF_DEBUG
+#endif
+FILEOS                 VOS_NT_WINDOWS32
+FILETYPE               VFT_APP
+BEGIN
+       BLOCK "StringFileInfo"
+       BEGIN
+               BLOCK "040904b0"
+               BEGIN
+                       VALUE "CompanyName", ""
+                       VALUE "FileDescription", "Alien-smashing action game"
+                       VALUE "FileVersion", PACKAGE_VERSION
+                       VALUE "InternalName", "Yoink"
+                       VALUE "LegalCopyright", "Copyright 2010 Charles McGarvey et al."
+                       VALUE "OriginalFilename", "yoink.exe"
+                       VALUE "ProductName", "Yoink"
+                       VALUE "ProductVersion", PACKAGE_VERSION
+               END
+       END
+       BLOCK "VarFileInfo"
+       BEGIN
+               VALUE "Translation", 0x0409, 1200
+       END
+END
+
+1000 ICON "../arch/win32/yoink.ico"
+
This page took 0.017333 seconds and 4 git commands to generate.