summaryrefslogtreecommitdiffstats
path: root/subsurface-gen-version.pri
diff options
context:
space:
mode:
Diffstat (limited to 'subsurface-gen-version.pri')
-rw-r--r--subsurface-gen-version.pri16
1 files changed, 16 insertions, 0 deletions
diff --git a/subsurface-gen-version.pri b/subsurface-gen-version.pri
new file mode 100644
index 000000000..a94a65adb
--- /dev/null
+++ b/subsurface-gen-version.pri
@@ -0,0 +1,16 @@
+# Generate the version.h file
+VERSION_FILE = version.h
+exists(.git/HEAD): {
+ GIT_HEAD = .git/HEAD
+ VERSION_SCRIPT = $$PWD/scripts/get-version
+ version_h.depends = $$VERSION_SCRIPT
+ version_h.commands = echo \\$${LITERAL_HASH}define VERSION_STRING \\\"`$$VERSION_SCRIPT linux`\\\" > ${QMAKE_FILE_OUT}
+ version_h.input = GIT_HEAD
+ version_h.output = $$VERSION_FILE
+ version_h.variable_out = GENERATED_FILES
+ version_h.CONFIG = ignore_no_exist
+ QMAKE_EXTRA_COMPILERS += version_h
+} else {
+ # This is probably a package
+ system(echo \\$${LITERAL_HASH}define VERSION_STRING \\\"$$VERSION\\\" > $$VERSION_FILE)
+}