From d602eac12ea2ca4a3eb80103af491ec8eb401f03 Mon Sep 17 00:00:00 2001 From: Francois Beaune Date: Wed, 3 Oct 2012 16:55:27 +0200 Subject: [PATCH] changed the default build configuration on non-Windows platforms from Release to Ship. --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4707ef75b0..f506b513e5 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -48,7 +48,7 @@ set (CMAKE_CONFIGURATION_TYPES "Debug;Release;Profile;Ship" CACHE STRING "" FORC # Select a build configuration if none is selected yet. if (NOT CMAKE_BUILD_TYPE) convert_list_to_string (config_types_string ${CMAKE_CONFIGURATION_TYPES}) - set (CMAKE_BUILD_TYPE Release + set (CMAKE_BUILD_TYPE Ship CACHE STRING "Choose the type of build, options are: ${config_types_string}" FORCE) endif ()