]> Dogcows Code - chaz/yoink/blobdiff - src/yoink.rc
new win32 resource file; better dependency checks
[chaz/yoink] / src / yoink.rc
diff --git a/src/yoink.rc b/src/yoink.rc
new file mode 100644 (file)
index 0000000..6bc5b36
--- /dev/null
@@ -0,0 +1,41 @@
+
+//
+// Yoink
+// Compile this file with windres and link the object 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
+#if !defined(NDEBUG)
+       FILEFLAGS       VS_FF_DEBUG
+#endif
+FILEOS                 VOS_NT_WINDOWS32
+FILETYPE               VFT_APP
+{
+       BLOCK "StringFileInfo"
+       {
+               BLOCK "000004b0"
+               {
+                       VALUE "CompanyName", "\000"
+                       VALUE "FileDescription", "Alien-smashing action game"
+                       VALUE "FileVersion", PACKAGE_VERSION
+                       VALUE "InternalName", "Yoink"
+                       VALUE "LegalCopyright", "Copyright (C) 2009 Charles McGarvey et al."
+                       VALUE "OriginalFilename", "Yoink.exe"
+                       VALUE "ProductName", "Yoink"
+                       VALUE "ProductVersion", PACKAGE_VERSION
+               }
+       }
+       BLOCK "VarFileInfo"
+       {
+               VALUE "Translation", 0x0409, 1200
+       }
+}
+
+1000 ICON "yoink.ico"
+
This page took 0.021389 seconds and 4 git commands to generate.