summaryrefslogtreecommitdiffstats
path: root/subsurface-gen-version.pri
diff options
context:
space:
mode:
authorGravatar Lubomir I. Ivanov <neolit123@gmail.com>2013-10-10 17:07:25 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-10-10 07:15:39 -0700
commit6d75d82ab9c7785e5c1927a563df59cfb613f721 (patch)
treef10a514bec12df55120186503deb260390e2aeb7 /subsurface-gen-version.pri
parent8b517f80817c837cd5efe815fc40315409be14a1 (diff)
downloadsubsurface-6d75d82ab9c7785e5c1927a563df59cfb613f721.tar.gz
subsurface-gen-version.pri: pass the current OS to get-version
We check the current OS and pass it as 'darwin' (osx), 'linux' or 'win' to the get-version shell script. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface-gen-version.pri')
-rw-r--r--subsurface-gen-version.pri5
1 files changed, 4 insertions, 1 deletions
diff --git a/subsurface-gen-version.pri b/subsurface-gen-version.pri
index a94a65adb..aaef383ac 100644
--- a/subsurface-gen-version.pri
+++ b/subsurface-gen-version.pri
@@ -1,10 +1,13 @@
# Generate the version.h file
VERSION_FILE = version.h
+macx: VER_OS = darwin
+unix: !macx: VER_OS = linux
+win32: VER_OS = win
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.commands = echo \\$${LITERAL_HASH}define VERSION_STRING \\\"`$$VERSION_SCRIPT $$VER_OS`\\\" > ${QMAKE_FILE_OUT}
version_h.input = GIT_HEAD
version_h.output = $$VERSION_FILE
version_h.variable_out = GENERATED_FILES