summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/version.h
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2012-07-01 19:06:34 +0200
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2012-07-01 19:06:34 +0200
commit644b83e0b4b47911f35ea34976d767f020f42f4e (patch)
treeb47d02b68886a88b6f0b255348b6a1d33ce0addd /rbutil/rbutilqt/version.h
parentc3a2b20ef2e1cf630a4863e57a6a403291fd2ba3 (diff)
downloadrockbox-644b83e0b4b47911f35ea34976d767f020f42f4e.tar.gz
rockbox-644b83e0b4b47911f35ea34976d767f020f42f4e.zip
Add version information to Windows file properties.
Windows can show the version in the file properties. This requires an additional entry in its resource. Restructure global version defines since the former requires a different format than used previously. Change-Id: I2bf261a02ea8e0af6dc081568960debfb779d396
Diffstat (limited to 'rbutil/rbutilqt/version.h')
-rw-r--r--rbutil/rbutilqt/version.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/rbutil/rbutilqt/version.h b/rbutil/rbutilqt/version.h
index a4a007867e..ac3728c630 100644
--- a/rbutil/rbutilqt/version.h
+++ b/rbutil/rbutilqt/version.h
@@ -26,7 +26,15 @@
26// rebuilds because of issues like dependency problems or library updates). 26// rebuilds because of issues like dependency problems or library updates).
27// Usually empty. 27// Usually empty.
28#define BUILDID "" 28#define BUILDID ""
29#define VERSION "1.2.14" BUILDID 29// Version string is constructed from parts, since the Windows rc file needs it
30// combined differently.
31#define VERSION_MAJOR 1
32#define VERSION_MINOR 2
33#define VERSION_MICRO 14
34#define VERSION_PATCH 0
35#define STR(x) #x
36#define VERSIONSTRING(a, b, c) STR(a) "." STR(b) "." STR(c)
37#define VERSION VERSIONSTRING(VERSION_MAJOR, VERSION_MINOR, VERSION_MICRO) BUILDID
30// PUREVERSION should identify the build uniquely. Use version string for now. 38// PUREVERSION should identify the build uniquely. Use version string for now.
31#define PUREVERSION "$Rev$" 39#define PUREVERSION "$Rev$"
32 40