mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 12:29:56 +00:00
[CMAKE]
Do not compile KDBG by default when building release builds svn path=/trunk/; revision=58530
This commit is contained in:
parent
abb74bd965
commit
b4fb05e8a9
1 changed files with 6 additions and 4 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue