From 9fb277fbe9f6a06100f304ccb8f5490918fbfed2 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Thu, 7 Jun 2018 13:16:42 +1000 Subject: [PATCH] use MSVC++ specific git branch/revision test --- sleepyhead/sleepyhead.pro | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/sleepyhead/sleepyhead.pro b/sleepyhead/sleepyhead.pro index 1c9a8dcc..f961bf9f 100644 --- a/sleepyhead/sleepyhead.pro +++ b/sleepyhead/sleepyhead.pro @@ -51,17 +51,17 @@ TEMPLATE = app exists(../.git):{ - GIT_COMMAND = git -C \"$$_PRO_FILE_PWD_\" - GIT_BRANCH=$$system($$GIT_COMMAND rev-parse --abbrev-ref HEAD) - GIT_REVISION=$$system($$GIT_COMMAND rev-parse --short HEAD) - DEFINES += GIT_BRANCH=\\\"$$GIT_BRANCH\\\" - DEFINES += GIT_REVISION=\\\"$$GIT_REVISION\\\" - - message ("Building $$GIT_BRANCH branch $$GIT_REVISION") - -# DEFINES += GIT_BRANC=\\\"$(shell git -C \"$$_PRO_FILE_PWD_\" rev-parse --abbrev-ref HEAD)\\\" -# DEFINES += GIT_REVISION="$(shell git -C "$$_PRO_FILE_PWD_\" rev-parse --short HEAD)" -# message($$GIT_BRANC) + if (*-msvc*):!equals(TEMPLATE_PREFIX, "vc") { + GIT_COMMAND = git -C \"$$_PRO_FILE_PWD_\" + GIT_BRANCH=$$system($$GIT_COMMAND rev-parse --abbrev-ref HEAD) + GIT_REVISION=$$system($$GIT_COMMAND rev-parse --short HEAD) + DEFINES += GIT_BRANCH=\\\"$$GIT_BRANCH\\\" + DEFINES += GIT_REVISION=\\\"$$GIT_REVISION\\\" + message ("Building $$GIT_BRANCH branch $$GIT_REVISION") + } else { + DEFINES += GIT_BRANCH="\\\"$(shell git -C \""$$_PRO_FILE_PWD_"\" rev-parse --abbrev-ref HEAD)\\\"" + DEFINES += GIT_REVISION="\\\"$(shell git -C \""$$_PRO_FILE_PWD_"\" rev-parse --short HEAD)\\\"" + } } else { DEFINES += GIT_BRANCH=\\\"UNKNOWN\\\"