mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 13:13:00 +00:00
[MMEBUDDY][MMIXER] Fix NDEBUG support (#7039)
- Remove unwanted value. - Use add_compile_definitions(). - NDEBUG "depends" on DBG.
This commit is contained in:
parent
c1c91f2a1a
commit
c7a4984595
3 changed files with 9 additions and 6 deletions
|
@ -1,7 +1,9 @@
|
|||
|
||||
add_definitions(
|
||||
-DUNICODE -D_UNICODE
|
||||
-DNDEBUG=1)
|
||||
-DUNICODE -D_UNICODE)
|
||||
if(DBG)
|
||||
add_compile_definitions(NDEBUG)
|
||||
endif()
|
||||
|
||||
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/libs/sound)
|
||||
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
|
||||
add_definitions(
|
||||
-DUNICODE -D_UNICODE
|
||||
-DNDEBUG=1)
|
||||
-DUNICODE -D_UNICODE)
|
||||
if(DBG)
|
||||
add_compile_definitions(NDEBUG)
|
||||
endif()
|
||||
|
||||
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/libs/sound)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue