Skip to content
Snippets Groups Projects
Commit 52e73d30 authored by Lars Bilke's avatar Lars Bilke Committed by Dmitri Naumov
Browse files

[cmake] Use list syntax of CXX_COMPILER_ID generator expression.

parent cd08a0a6
No related branches found
No related tags found
No related merge requests found
...@@ -31,10 +31,8 @@ target_link_libraries( ...@@ -31,10 +31,8 @@ target_link_libraries(
# Disable warnings for generated OgsMFrontBehaviour # Disable warnings for generated OgsMFrontBehaviour
target_compile_options( target_compile_options(
OgsMFrontBehaviour OgsMFrontBehaviour PRIVATE $<$<CXX_COMPILER_ID:Clang,AppleClang,GNU>:-w>
PRIVATE $<$<CXX_COMPILER_ID:MSVC>:/W0>
$<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>:-w>
$<$<CXX_COMPILER_ID:MSVC>:/W0>
) )
target_include_directories( target_include_directories(
......
...@@ -456,10 +456,8 @@ if(WIN32 AND VTK_ADDED) ...@@ -456,10 +456,8 @@ if(WIN32 AND VTK_ADDED)
endif() endif()
foreach(target ${DISABLE_WARNINGS_TARGETS}) foreach(target ${DISABLE_WARNINGS_TARGETS})
target_compile_options( target_compile_options(
${target} ${target} PRIVATE $<$<CXX_COMPILER_ID:Clang,AppleClang,GNU>:-w>
PRIVATE $<$<CXX_COMPILER_ID:MSVC>:/W0>
$<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>:-w>
$<$<CXX_COMPILER_ID:MSVC>:/W0>
) )
endforeach() endforeach()
......
...@@ -96,19 +96,8 @@ function(ogs_add_library targetName) ...@@ -96,19 +96,8 @@ function(ogs_add_library targetName)
add_library(${targetName} ${type} ${files}) add_library(${targetName} ${type} ${files})
target_compile_options( target_compile_options(
${targetName} ${targetName}
PRIVATE # OR does not work with cotire PRIVATE $<$<CXX_COMPILER_ID:Clang,AppleClang,GNU>:-Wall -Wextra
# $<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>, -Wunreachable-code> $<$<CXX_COMPILER_ID:MSVC>:/W3>
# $<CXX_COMPILER_ID:GNU>>:-Wall -Wextra>
$<$<CXX_COMPILER_ID:Clang>:-Wall
-Wextra
-Wunreachable-code>
$<$<CXX_COMPILER_ID:AppleClang>:-Wall
-Wextra
-Wunreachable-code>
$<$<CXX_COMPILER_ID:GNU>:-Wall
-Wextra
-Wunreachable-code>
$<$<CXX_COMPILER_ID:MSVC>:/W3>
) )
if(BUILD_SHARED_LIBS) if(BUILD_SHARED_LIBS)
...@@ -120,7 +109,9 @@ function(ogs_add_library targetName) ...@@ -120,7 +109,9 @@ function(ogs_add_library targetName)
if(ogs_add_library_GENERATE_EXPORT_HEADER) if(ogs_add_library_GENERATE_EXPORT_HEADER)
include(GenerateExportHeader) include(GenerateExportHeader)
generate_export_header(${targetName}) generate_export_header(${targetName})
target_include_directories(${targetName} PUBLIC ${CMAKE_CURRENT_BINARY_DIR}) target_include_directories(
${targetName} PUBLIC ${CMAKE_CURRENT_BINARY_DIR}
)
endif() endif()
if(${CMAKE_VERSION} VERSION_GREATER_EQUAL 3.16) if(${CMAKE_VERSION} VERSION_GREATER_EQUAL 3.16)
...@@ -144,19 +135,8 @@ function(ogs_add_executable targetName) ...@@ -144,19 +135,8 @@ function(ogs_add_executable targetName)
target_compile_options( target_compile_options(
${targetName} ${targetName}
PRIVATE # OR does not work with cotire PRIVATE $<$<CXX_COMPILER_ID:Clang,AppleClang,GNU>:-Wall -Wextra
# $<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>, -Wunreachable-code> $<$<CXX_COMPILER_ID:MSVC>:/W3>
# $<CXX_COMPILER_ID:GNU>>:-Wall -Wextra>
$<$<CXX_COMPILER_ID:Clang>:-Wall
-Wextra
-Wunreachable-code>
$<$<CXX_COMPILER_ID:AppleClang>:-Wall
-Wextra
-Wunreachable-code>
$<$<CXX_COMPILER_ID:GNU>:-Wall
-Wextra
-Wunreachable-code>
$<$<CXX_COMPILER_ID:MSVC>:/W3>
) )
endfunction() endfunction()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment