-
Notifications
You must be signed in to change notification settings - Fork 80
/
win-res.rc
32 lines (30 loc) · 1.11 KB
/
win-res.rc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include <windows.h>
#include "./resources/revision.h"
VS_VERSION_INFO VERSIONINFO
FILEVERSION 2, 1, (GIT_COMMIT_AT/65536), (GIT_COMMIT_AT%65536)
PRODUCTVERSION 2, 1, (GIT_COMMIT_AT/65536), (GIT_COMMIT_AT%65536)
FILEFLAGSMASK 0x3fL
FILEFLAGS 0
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_APP
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "FileDescription", "Tool to create bitmaps and fonts for embedded applications\0"
VALUE "FileVersion", GIT_REVISION_ABBR
VALUE "InternalName", "lcd-image-converter\0"
VALUE "LegalCopyright", "© riuson, 2010\0"
VALUE "OriginalFilename", "lcd-image-converter.exe\0"
VALUE "ProductName", "LCD Image Converter\0"
VALUE "ProductVersion", GIT_REVISION
END
END
END
IDI_ICON1 ICON DISCARDABLE "resources/icons/lcd-image-converter.ico"