[PATCH 2/2] subsurface-gen-version.pri: pass the current OS to get-version

Lubomir I. Ivanov neolit123 at gmail.com
Thu Oct 10 07:07:25 UTC 2013


From: "Lubomir I. Ivanov" <neolit123 at gmail.com>

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 at gmail.com>
---
 subsurface-gen-version.pri | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/subsurface-gen-version.pri b/subsurface-gen-version.pri
index a94a65a..aaef383 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
-- 
1.7.11.msysgit.0



More information about the subsurface mailing list