]> Dogcows Code - chaz/yoink/blob - src/yoink.rc
new win32 resource file; better dependency checks
[chaz/yoink] / src / yoink.rc
1
2 //
3 // Yoink
4 // Compile this file with windres and link the object with the executable.
5 //
6
7 #include <winver.h>
8 #include "config.h"
9
10 1 VERSIONINFO
11
12 FILEVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_REVISION,0
13 PRODUCTVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_REVISION,0
14 #if !defined(NDEBUG)
15 FILEFLAGS VS_FF_DEBUG
16 #endif
17 FILEOS VOS_NT_WINDOWS32
18 FILETYPE VFT_APP
19 {
20 BLOCK "StringFileInfo"
21 {
22 BLOCK "000004b0"
23 {
24 VALUE "CompanyName", "\000"
25 VALUE "FileDescription", "Alien-smashing action game"
26 VALUE "FileVersion", PACKAGE_VERSION
27 VALUE "InternalName", "Yoink"
28 VALUE "LegalCopyright", "Copyright (C) 2009 Charles McGarvey et al."
29 VALUE "OriginalFilename", "Yoink.exe"
30 VALUE "ProductName", "Yoink"
31 VALUE "ProductVersion", PACKAGE_VERSION
32 }
33 }
34 BLOCK "VarFileInfo"
35 {
36 VALUE "Translation", 0x0409, 1200
37 }
38 }
39
40 1000 ICON "yoink.ico"
41
This page took 0.032271 seconds and 5 git commands to generate.