cmake: default build type 'Release'

+Make available build types explicit (pull-down in CMake GUI)

Change-Id: Ib2cdd31ad038cef1bb27fcd14f089a35a9751e76
This commit is contained in:
Horst Schirmeier
2018-06-15 10:55:51 +02:00
parent be0b7b630c
commit c88c034ca7
2 changed files with 10 additions and 0 deletions

View File

@ -35,6 +35,7 @@ ENDIF (EXECUTABLE_OUTPUT_PATH)
SET(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake) SET(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
#### Compiler configuration, see cmake/compilerconfig.cmake #### Compiler configuration, see cmake/compilerconfig.cmake
include(BuildType)
include(compilerconfig) include(compilerconfig)
include(doxygen) include(doxygen)

9
cmake/BuildType.cmake Normal file
View File

@ -0,0 +1,9 @@
# Set a default build type if none was specified
set(default_build_type "Release")
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
message(STATUS "Setting build type to '${default_build_type}' as none was specified.")
set(CMAKE_BUILD_TYPE "${default_build_type}" CACHE STRING "Choose the build type." FORCE)
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS
"Debug" "Release" "MinSizeRel" "RelWithDebInfo")
endif()