mirror of
https://github.com/reactos/reactos.git
synced 2025-06-04 00:40:31 +00:00
[CMAKE] Fix definition of NDEBUG on MSVC release builds
Prevents redefinition warnings.
This commit is contained in:
parent
c7d1aa3e92
commit
7a15da2a8c
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ endif()
|
||||||
if(NOT (_PREFAST_ OR _VS_ANALYZE_))
|
if(NOT (_PREFAST_ OR _VS_ANALYZE_))
|
||||||
add_compile_options($<$<CONFIG:Debug>:/Zi>)
|
add_compile_options($<$<CONFIG:Debug>:/Zi>)
|
||||||
endif()
|
endif()
|
||||||
add_compile_definitions($<$<CONFIG:Release>:NDEBUG>)
|
add_compile_definitions($<$<CONFIG:Release>:NDEBUG=>)
|
||||||
|
|
||||||
# Hotpatchable images
|
# Hotpatchable images
|
||||||
if(ARCH STREQUAL "i386")
|
if(ARCH STREQUAL "i386")
|
||||||
|
|
Loading…
Reference in a new issue