summaryrefslogtreecommitdiffstats
path: root/subsurface-gen-version.pri
diff options
context:
space:
mode:
authorGravatar Lubomir I. Ivanov <neolit123@gmail.com>2013-12-03 23:00:22 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-12-03 13:03:46 -0800
commit1f7f5e18e24f6732c7ca6d950c65a5499cbd0183 (patch)
treeafc06d537411cad69190420279d92a04fa1419d4 /subsurface-gen-version.pri
parent639f12cc426480adb3e9ac04b45fb0952251ca6d (diff)
downloadsubsurface-1f7f5e18e24f6732c7ca6d950c65a5499cbd0183.tar.gz
qmake: use real tabs for all .pri files
subsurface.pro already useses that. For consistency with the app, we use swap 4 spaces with a tab character for indentation. 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.pri36
1 files changed, 18 insertions, 18 deletions
diff --git a/subsurface-gen-version.pri b/subsurface-gen-version.pri
index 4a8fc9c6b..e0d0ea512 100644
--- a/subsurface-gen-version.pri
+++ b/subsurface-gen-version.pri
@@ -4,23 +4,23 @@ macx: VER_OS = darwin
unix: !macx: VER_OS = linux
win32: VER_OS = win
exists(.git/HEAD): {
- win32: SET_GIT_DIR = set GIT_DIR
- else: SET_GIT_DIR = GIT_DIR
- GIT_HEAD = .git/HEAD
- VERSION_SCRIPT = $$PWD/scripts/get-version
- # always use linux here -------------------vvv so we get the true full version
- FULL_VERSION = "`$$VERSION_SCRIPT linux`"
- PRODVERSION_STRING = $$system("sh scripts/get-version win $$FULL_VERSION || $${VERSION}.0.0")
- VERSION_STRING = $$system("sh scripts/get-version linux $$FULL_VERSION || $${VERSION}")
- version_h.depends = $$VERSION_SCRIPT $$PWD/.git/$$system("$$SET_GIT_DIR=$$PWD/.git git rev-parse --symbolic-full-name HEAD")
- version_h.commands = echo \\$${LITERAL_HASH}define VERSION_STRING \\\"`GIT_DIR=$$PWD/.git $$VERSION_SCRIPT $$VER_OS`\\\" > ${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
+ win32: SET_GIT_DIR = set GIT_DIR
+ else: SET_GIT_DIR = GIT_DIR
+ GIT_HEAD = .git/HEAD
+ VERSION_SCRIPT = $$PWD/scripts/get-version
+ # always use linux here -------------------vvv so we get the true full version
+ FULL_VERSION = "`$$VERSION_SCRIPT linux`"
+ PRODVERSION_STRING = $$system("sh scripts/get-version win $$FULL_VERSION || $${VERSION}.0.0")
+ VERSION_STRING = $$system("sh scripts/get-version linux $$FULL_VERSION || $${VERSION}")
+ version_h.depends = $$VERSION_SCRIPT $$PWD/.git/$$system("$$SET_GIT_DIR=$$PWD/.git git rev-parse --symbolic-full-name HEAD")
+ version_h.commands = echo \\$${LITERAL_HASH}define VERSION_STRING \\\"`GIT_DIR=$$PWD/.git $$VERSION_SCRIPT $$VER_OS`\\\" > ${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
- FULL_VERSION = $$VERSION
- system(echo \\$${LITERAL_HASH}define VERSION_STRING \\\"$$VERSION\\\" > $$VERSION_FILE)
+ # This is probably a package
+ FULL_VERSION = $$VERSION
+ system(echo \\$${LITERAL_HASH}define VERSION_STRING \\\"$$VERSION\\\" > $$VERSION_FILE)
}