New-Cli-Installer/cmake/StandardProjectSettings.cmake

47 lines
1.4 KiB
CMake
Raw Normal View History

2021-11-26 02:34:58 +08:00
# Set a default build type if none was specified
2021-12-01 09:31:37 +08:00
if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
message(STATUS "Setting build type to 'RelWithDebInfo' as none was specified.")
set(CMAKE_BUILD_TYPE
RelWithDebInfo
CACHE STRING "Choose the type of build." FORCE)
# Set the possible values of build type for cmake-gui, ccmake
set_property(
CACHE CMAKE_BUILD_TYPE
PROPERTY STRINGS
"Debug"
"Release"
"MinSizeRel"
"RelWithDebInfo")
endif ()
2021-11-26 02:34:58 +08:00
# Generate compile_commands.json to make it easier to work with clang based tools
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
option(ENABLE_IPO "Enable Interprocedural Optimization, aka Link Time Optimization (LTO)" OFF)
2021-12-01 09:31:37 +08:00
if (ENABLE_IPO)
include(CheckIPOSupported)
check_ipo_supported(
RESULT
result
OUTPUT
output)
if (result)
set(CMAKE_INTERPROCEDURAL_OPTIMIZATION ON)
else ()
message(SEND_ERROR "IPO is not supported: ${output}")
endif ()
endif ()
if (CMAKE_CXX_COMPILER_ID MATCHES ".*Clang")
add_compile_options(-fcolor-diagnostics)
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
add_compile_options(-fdiagnostics-color=always)
else ()
message(STATUS "No colored compiler diagnostic set for '${CMAKE_CXX_COMPILER_ID}' compiler.")
endif ()
2021-11-26 02:34:58 +08:00
# Enables STL container checker if not building a release.
2021-12-01 09:31:37 +08:00
if (CMAKE_BUILD_TYPE STREQUAL "Debug")
add_definitions(-D_GLIBCXX_ASSERTIONS)
endif ()