From b35686f79d6facb76f6b92c64e545e6accaaf3dc Mon Sep 17 00:00:00 2001 From: "J.A. de Jong - Redu-Sone B.V., ASCEE V.O.F" Date: Mon, 25 Jul 2022 22:30:11 +0200 Subject: [PATCH] Default build type is Release --- cmake/BuildType.cmake | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cmake/BuildType.cmake b/cmake/BuildType.cmake index caeee6d..cde28a5 100644 --- a/cmake/BuildType.cmake +++ b/cmake/BuildType.cmake @@ -1,13 +1,12 @@ # Set a default build type if none was specified + set(default_build_type "Release") -if(EXISTS "${CMAKE_SOURCE_DIR}/.git") - set(default_build_type "Debug") -endif() 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) + # Set the possible values of build type for cmake-gui set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release") endif()