mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 07:35:08 +00:00
d7e0722ca6
before 6.0.0 it was named freebsd10
19 lines
718 B
CMake
19 lines
718 B
CMake
# Set a default build type if none was specified
|
|
set(DEFAULT_CMAKE_BUILD_TYPE Release)
|
|
if(EXISTS ${CMAKE_SOURCE_DIR}/.git)
|
|
set(DEFAULT_CMAKE_BUILD_TYPE Debug)
|
|
endif()
|
|
|
|
# CMAKE_BUILD_TYPE is not available if a multi-configuration generator is used
|
|
# (eg Visual Studio generators)
|
|
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
|
|
message(STATUS "Setting build type to '${DEFAULT_CMAKE_BUILD_TYPE}' as none \
|
|
was specified.")
|
|
set(CMAKE_BUILD_TYPE ${DEFAULT_CMAKE_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)
|
|
endif()
|