mirror of
https://github.com/reactos/reactos.git
synced 2025-05-28 13:38:19 +00:00
[SDK] Fix RelWithDebInfo (#7811)
This commit is contained in:
parent
386fccd02c
commit
6c7d2a2e25
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ endif()
|
|||
add_compile_options(-march=${OARCH} -mtune=${TUNE})
|
||||
|
||||
# Warnings, errors
|
||||
if((NOT CMAKE_BUILD_TYPE STREQUAL "Release") AND (NOT CMAKE_C_COMPILER_ID STREQUAL Clang))
|
||||
if((NOT CMAKE_BUILD_TYPE STREQUAL "Release") AND (NOT CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo") AND (NOT CMAKE_C_COMPILER_ID STREQUAL Clang))
|
||||
add_compile_options(-Werror)
|
||||
endif()
|
||||
|
||||
|
|
Loading…
Reference in a new issue