2020-05-19 20:22:29 +02:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause #
|
|
|
|
|
# Copyright (c) 2015-2017 Marcus D. Hanwell #
|
|
|
|
|
# Copyright (c) 2020 Jean Pierre Cimalando #
|
|
|
|
|
#------------------------------------------------------------------------------#
|
|
|
|
|
|
|
|
|
|
# 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 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)
|
|
|
|
|
|
2023-08-07 11:44:28 +02:00
|
|
|
# Set the possible values of build type for cmake-gui
|
|
|
|
|
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release"
|
2020-05-19 20:22:29 +02:00
|
|
|
"MinSizeRel" "RelWithDebInfo")
|
2023-08-07 11:44:28 +02:00
|
|
|
endif()
|