Fix Werror always being enabled

This commit is contained in:
Wouter 2020-01-12 01:28:39 +01:00
parent 901de4166e
commit 35f027c944
No known key found for this signature in database
GPG Key ID: 14C7AB14E0A8019D
1 changed files with 2 additions and 2 deletions

View File

@ -124,9 +124,9 @@ IF(ENABLE_WARNINGS)
# Saves quite a few lines and boilerplate at the price of readability.
TARGET_COMPILE_OPTIONS(VVVVVV PRIVATE
$<$<OR:$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>>:
-Wall $<$<BOOL:ENABLE_WERROR>:-Werror>>
-Wall $<$<BOOL:${ENABLE_WERROR}>:-Werror>>
$<$<CXX_COMPILER_ID:MSVC>:
/W4 $<$<BOOL:ENABLE_WERROR>:/WX>>)
/W4 $<$<BOOL:${ENABLE_WERROR}>:/WX>>)
ENDIF()
# Library information