CMake: fix compiler identification checks

This commit is contained in:
FranciscoPombal 2021-05-20 17:21:13 +01:00 committed by Vladimir Golovnev
parent 42582e21f7
commit 2f6abb8aa1

View file

@ -37,7 +37,7 @@ macro(qbt_common_config)
) )
endif() endif()
if ((CXX_COMPILER_ID STREQUAL "GNU") OR (CXX_COMPILER_ID STREQUAL "Clang") OR (CXX_COMPILER_ID STREQUAL "AppleClang")) if ((CMAKE_CXX_COMPILER_ID STREQUAL "GNU") OR (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") OR (CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang"))
target_compile_options(qbt_common_cfg INTERFACE target_compile_options(qbt_common_cfg INTERFACE
-Wall -Wall
-Wextra -Wextra
@ -59,7 +59,7 @@ macro(qbt_common_config)
endif() endif()
endif() endif()
if ((CXX_COMPILER_ID STREQUAL "Clang") OR (CXX_COMPILER_ID STREQUAL "AppleClang")) if ((CMAKE_CXX_COMPILER_ID STREQUAL "Clang") OR (CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang"))
target_compile_options(qbt_common_cfg INTERFACE target_compile_options(qbt_common_cfg INTERFACE
-Wno-range-loop-analysis -Wno-range-loop-analysis
) )