Files
Fletcher Dunn 9a59089e8d Move where we dump CMAKE_BUILD_TYPE.
We need to wait until after we include DefaultBuildType!
2020-10-09 11:59:16 -07:00

13 lines
575 B
CMake

# Set a default build type if none was specified
set(default_build_type "RelWithDebInfo")
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
message(STATUS "Setting CMAKE_BUILD_TYPE to '${default_build_type}' as none was specified.")
set(CMAKE_BUILD_TYPE "${default_build_type}" CACHE STRING "Choose the type of build." FORCE)
# Set the possible values of build type for cmake-gui
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" "MinSizeRel" "RelWithDebInfo")
else()
message(STATUS "CMAKE_BUILD_TYPE='${CMAKE_BUILD_TYPE}'")
endif()