Browse Source

fixed usage of qmake message function

master
Skycoder42 7 years ago
parent
commit
4830aa2490
No known key found for this signature in database GPG Key ID: 8E01AD9EF0578D2B
  1. 4
      tools/linuxdeployqt/linuxdeployqt.pro

4
tools/linuxdeployqt/linuxdeployqt.pro

@ -27,10 +27,10 @@ DEFINES += BUILD_DATE="'\"$(shell env LC_ALL=C date -u '+%Y-%m-%d %H:%M:%S %Z')\
_BUILD_NUMBER = $$(TRAVIS_BUILD_NUMBER)
isEmpty(_BUILD_NUMBER) {
message(Not building on Travis CI, tagging build as local dev build)
message("Not building on Travis CI, tagging build as local dev build")
DEFINES += BUILD_NUMBER="'\"<local dev build>\"'"
} else {
message(Building on Travis CI build, build number $$_BUILD_NUMBER)
message("Building on Travis CI build, build number $$_BUILD_NUMBER")
DEFINES += BUILD_NUMBER="'\"$$_BUILD_NUMBER\"'"
}

Loading…
Cancel
Save