[CMAKE] Default to Debug for the build type in GCC builds.

svn path=/trunk/; revision=67862
This commit is contained in:
Amine Khaldi 2015-05-23 11:45:59 +00:00
parent 233d650aa0
commit e7a9440fb8
2 changed files with 6 additions and 6 deletions

View file

@ -46,12 +46,6 @@ endif()
# for more information.
string(TOLOWER ${ARCH} ARCH)
# Default to Debug for the build type
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Debug" CACHE STRING
"Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel.")
endif()
# Compile options
if(ARCH STREQUAL "i386")
include(cmake/config.cmake)

View file

@ -3,6 +3,12 @@ if(NOT ARCH)
set(ARCH i386)
endif()
# Default to Debug for the build type
if(NOT DEFINED CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Debug" CACHE STRING
"Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel.")
endif()
# Choose the right MinGW toolchain prefix
if (NOT DEFINED MINGW_TOOLCHAIN_PREFIX)
if(ARCH STREQUAL "i386")