From d88dd7bfd107dc8c22ae9b91a3b2a06bc7afe815 Mon Sep 17 00:00:00 2001 From: Carlos Henrique Lima Melara Date: Fri, 30 Dec 2022 10:17:47 +0100 Subject: fix missing kristall version when not building in git repo --- src/kristall.pro | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/kristall.pro b/src/kristall.pro index 5f5bb46..646d302 100644 --- a/src/kristall.pro +++ b/src/kristall.pro @@ -9,7 +9,13 @@ greaterThan(QT_MAJOR_VERSION, 4): QT += widgets network multimedia multimediawid # deprecated API in order to know how to port your code away from it. DEFINES += QT_DEPRECATED_WARNINGS -DEFINES += KRISTALL_VERSION="\"$(shell cd $$PWD; git describe --tags)\"" +KRISTALL_VERSION = $$(KRISTALL_VERSION) + +isEmpty(KRISTALL_VERSION) { + KRISTALL_VERSION = $(shell cd $$PWD; git describe --tags) +} + +DEFINES += KRISTALL_VERSION="\"$$KRISTALL_VERSION\"" # You can also make your code fail to compile if it uses deprecated APIs. # In order to do so, uncomment the following line. -- cgit v1.2.3