* Make CMAKE_BUILD_TYPE default to Debug for all our builds.

svn path=/trunk/; revision=57356
This commit is contained in:
Amine Khaldi 2012-09-21 14:29:02 +00:00
parent e3cd71c6d6
commit daef68bbb8

View file

@ -52,6 +52,9 @@ else()
"Whether to compile with the KD protocol.") "Whether to compile with the KD protocol.")
endif() endif()
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." FORCE)
set(_ELF_ FALSE CACHE BOOL set(_ELF_ FALSE CACHE BOOL
"Whether to compile support for ELF files. "Whether to compile support for ELF files.
Do not enable unless you know what you're doing.") Do not enable unless you know what you're doing.")