mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
fix windowTitle without .git
This commit is contained in:
parent
43c2610cb2
commit
a96c19c006
@ -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
|
||||
|
@ -45,7 +45,7 @@ QString misc::getWindowTitle()
|
||||
}
|
||||
#if defined(GIT)
|
||||
QString hash = GIT;
|
||||
if (hash != "unknown") {
|
||||
if (!hash.isEmpty()) {
|
||||
title = title + "-" + hash;
|
||||
}
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user