From: Mathias Froehlich Date: Mon, 12 Sep 2011 06:08:26 +0000 (+0200) Subject: cmake: Use a default build type that builds fast executables. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d290fdfc5f6654ae0e14f977acc314dc9b860035;p=simgear.git cmake: Use a default build type that builds fast executables. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 381ac41c..68d8e059 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,6 +29,13 @@ message(STATUS "version is ${CPACK_PACKAGE_VERSION_MAJOR} dot ${CPACK_PACKAGE_VE # We have some custom .cmake scripts not in the official distribution. set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/CMakeModules;${CMAKE_MODULE_PATH}") +# Change the default build type to something fast +if(NOT CMAKE_BUILD_TYPE) + set(CMAKE_BUILD_TYPE Release CACHE STRING + "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel." + FORCE) +endif(NOT CMAKE_BUILD_TYPE) + option(SIMGEAR_SHARED "Set to ON to build SimGear as a shared library/framework" OFF) option(SIMGEAR_HEADLESS "Set to ON to build SimGear without GUI/graphics support" OFF) option(JPEG_FACTORY "Enable JPEG-factory support" OFF)