Do not compile KDBG by default when building release builds

svn path=/trunk/; revision=58530
This commit is contained in:
Timo Kreuzer 2013-03-16 23:28:27 +00:00
parent abb74bd965
commit b4fb05e8a9

View file

@ -46,10 +46,12 @@ if(MSVC)
endif() endif()
else() else()
set(KDBG TRUE CACHE BOOL if(CMAKE_BUILD_TYPE STREQUAL "Release")
"Whether to compile in the integrated kernel debugger.") set(KDBG FALSE CACHE BOOL "Whether to compile in the integrated kernel debugger.")
set(_WINKD_ FALSE CACHE BOOL else()
"Whether to compile with the KD protocol.") set(KDBG TRUE CACHE BOOL "Whether to compile in the integrated kernel debugger.")
endif()
set(_WINKD_ FALSE CACHE BOOL "Whether to compile with the KD protocol.")
endif() endif()
set(_ELF_ FALSE CACHE BOOL set(_ELF_ FALSE CACHE BOOL