fix windowTitle without .git

This commit is contained in:
Krasilnikov Sergey 2024-02-05 13:02:57 +03:00
parent 43c2610cb2
commit a96c19c006
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ endif()
file (STRINGS "${qucs-suite_SOURCE_DIR}/VERSION" QUCS_VERSION)
message(STATUS "Configuring Qucs: VERSION ${QUCS_VERSION}")
set(GIT unknown)
set(GIT "")
if(EXISTS ${CMAKE_SOURCE_DIR}/.git )
find_package(Git)
# Get the latest abbreviated commit hash of the working branch

View File

@ -45,7 +45,7 @@ QString misc::getWindowTitle()
}
#if defined(GIT)
QString hash = GIT;
if (hash != "unknown") {
if (!hash.isEmpty()) {
title = title + "-" + hash;
}
#endif