CMake: Change default build type to Standard

This commit is contained in:
Sam Edwards 2019-09-21 02:45:46 -06:00
parent 9bb59b03b9
commit aadcb179d6

View File

@ -36,15 +36,15 @@ endif()
# Define the type of build we are setting up. # Define the type of build we are setting up.
if(IS_MULTICONFIG) if(IS_MULTICONFIG)
set(CMAKE_CONFIGURATION_TYPES Release RelWithDebInfo Debug MinSizeRel Standard) set(CMAKE_CONFIGURATION_TYPES Standard Release RelWithDebInfo Debug MinSizeRel)
else() else()
# CMAKE_BUILD_TYPE can't just be set using the usual set(CACHE) method since # CMAKE_BUILD_TYPE can't just be set using the usual set(CACHE) method since
# it's an empty string by default. # it's an empty string by default.
if(NOT CMAKE_BUILD_TYPE) if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE RelWithDebInfo) set(CMAKE_BUILD_TYPE Standard)
endif() endif()
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS
Release RelWithDebInfo Debug MinSizeRel Standard) Standard Release RelWithDebInfo Debug MinSizeRel)
endif() endif()
# Provide convenient boolean expression based on build type # Provide convenient boolean expression based on build type