Skip to content

Commit

Permalink
Fixed git_tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
De Stefano committed Oct 3, 2016
1 parent 275c5dc commit 96f2a88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/src.pro
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 32,10 @@ greaterThan(NEED_GCOV_SUPPORT, 0) {
}

#Define GIT Macros
GIT_VERSION = $$system(git describe --long --dirty)
GIT_VERSION = $$system(git describe --long --dirty --tags)
DEFINES = GIT_VERSION=\\\"$$GIT_VERSION\\\"

GIT_TAG = $$system(git describe --abbrev=0)
GIT_TAG = $$system(git describe --abbrev=0 --tags)
VERSION = $$replace(GIT_TAG, v,)

PRIVATE_HEADERS = \
Expand Down

0 comments on commit 96f2a88

Please sign in to comment.