Fix for AppleClang 12

This commit is contained in:
Vladyslav Usenko 2021-11-21 18:51:55 +01:00
parent 05a6df43d6
commit 08aab6bcde
1 changed files with 6 additions and 1 deletions

View File

@ -69,7 +69,12 @@ endif()
# fix pangolin: macOS >= 10.14 Mojave
if(APPLE AND CMAKE_SYSTEM_VERSION VERSION_GREATER_EQUAL 18.0.0)
target_compile_options(pangolin PRIVATE "-Wno-deprecated-declarations" "-Wno-deprecated-copy")
target_compile_options(pangolin PRIVATE "-Wno-deprecated-declarations")
if(CMAKE_CXX_COMPILER_ID "AppleClang" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 12.0.0)
target_compile_options(pangolin PRIVATE "-Wno-deprecated-copy")
endif()
endif()
# fix pangolin: clang