summaryrefslogtreecommitdiffstats
path: root/src/b2qt-update-util/b2qt-update-util.pro
blob: 0b5ab325875bffdcc3dcae5cc98a1eedc6ef9c86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
QT = core
SOURCES = main.cpp
INSTALLS += target
target.path = /usr/bin

# Find out git hash
unix:system(which git):HAS_GIT=TRUE
win32:system(where git.exe):HAS_GIT=TRUE
contains(HAS_GIT, TRUE) {
    GIT_HASH=$$system(git log -1 --format=%H)
    !system(git diff-index --quiet HEAD): GIT_HASH="$$GIT_HASH-dirty"
    GIT_VERSION=$$system(git describe --tags --exact-match)
    isEmpty(GIT_VERSION) : GIT_VERSION="unknown"
} else {
    GIT_HASH="unknown"
    GIT_VERSION="unknown"
}

isEmpty(GIT_VERSION) : error("No suitable tag found")
isEmpty(GIT_HASH) : error("No hash available")

DEFINES+="GIT_HASH=\\\"$$GIT_HASH\\\""
DEFINES+="GIT_VERSION=\\\"$$GIT_VERSION\\\""