mirror of
https://github.com/minetest/minetest.git
synced 2024-11-27 01:53:45 +01:00
Append -debug to version string (#5765)
This commit is contained in:
parent
0120fe16a7
commit
287605ca81
@ -26,6 +26,11 @@ elseif(DEVELOPMENT_BUILD)
|
|||||||
set(VERSION_STRING "${VERSION_STRING}-dev")
|
set(VERSION_STRING "${VERSION_STRING}-dev")
|
||||||
endif()
|
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} ***")
|
message(STATUS "*** Will build version ${VERSION_STRING} ***")
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user