comparison rc/win32/version.rc @ 242:82470f83f0c2

autotools: make windows build work also, I've added back the method I made for getting the vars as variables rather than separate files, so less clutter in tmp folders :)
author Paper <paper@paper.us.eu.org>
date Mon, 22 Jan 2024 19:06:23 -0800
parents
children
comparison
equal deleted inserted replaced
241:06d6c351925c 242:82470f83f0c2
1 #include "winver.h"
2
3 #ifndef WRC_VERSION
4 # define WRC_VERSION 0,0,0,0
5 #endif
6
7 #ifndef PACKAGE_VERSION
8 # define PACKAGE_VERSION "0.0.0"
9 #endif
10
11 VS_VERSION_INFO VERSIONINFO
12 FILEVERSION WRC_VERSION
13 PRODUCTVERSION WRC_VERSION
14 FILEFLAGS 0x0L
15 FILEFLAGSMASK 0x3fL
16 FILEOS 0x00040004L
17 FILETYPE 0x1L
18 FILESUBTYPE 0x0L
19 BEGIN
20 BLOCK "StringFileInfo"
21 BEGIN
22 BLOCK "000004b0"
23 BEGIN
24 VALUE "CompanyName", "Paper"
25 VALUE "FileDescription", "A lightweight anime tracker built with Qt."
26 VALUE "FileVersion", PACKAGE_VERSION
27 VALUE "InternalName", "minori"
28 VALUE "OriginalFilename", "minori.exe"
29 VALUE "ProductName", "Minori"
30 VALUE "ProductVersion", PACKAGE_VERSION
31 END
32 END
33 BLOCK "VarFileInfo"
34 BEGIN
35 VALUE "Translation", 0x409, 1252
36 END
37 END