From eb3a19b8dd9304da34ad99741a44847749b39065 Mon Sep 17 00:00:00 2001 From: Kubat <mael.martin31@gmail.com> Date: Fri, 11 Feb 2022 13:13:54 +0100 Subject: [PATCH] BUILD: -Wno-unknown-warning-option for clang --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 892d0075..78db6e0a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -140,6 +140,10 @@ if (${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang") -Wno-padded -Wno-global-constructors -Wno-exit-time-destructors + + # Don't triger warnings about not known warnings all the time... + # (because of the different clang versions) + -Wno-unknown-warning-option ) target_link_libraries(Vivy PRIVATE -fopenmp -- GitLab