* Exclude host tools when setting the default build type.

svn path=/trunk/; revision=57357
This commit is contained in:
Amine Khaldi 2012-09-21 14:35:19 +00:00
parent daef68bbb8
commit 68e7f54bc1
2 changed files with 4 additions and 3 deletions

View file

@ -91,6 +91,10 @@ else()
set(CMAKE_CXX_USE_RESPONSE_FILE_FOR_INCLUDES OFF)
endif()
# Default to Debug for the 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." FORCE)
# Do some cleanup
file(REMOVE
${REACTOS_BINARY_DIR}/dependencies.graphml

View file

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