Append -debug to version string (#5765)

master
bigfoot547 2017-05-17 02:41:41 -05:00 committed by Loïc Blot
parent 0120fe16a7
commit 287605ca81
1 changed files with 5 additions and 0 deletions

View File

@ -26,6 +26,11 @@ elseif(DEVELOPMENT_BUILD)
set(VERSION_STRING "${VERSION_STRING}-dev")
endif()
if (CMAKE_BUILD_TYPE STREQUAL Debug)
# Append "-debug" to version string
set(VERSION_STRING "${VERSION_STRING}-debug")
endif()
message(STATUS "*** Will build version ${VERSION_STRING} ***")