From d9998ed6eb93c146ae8849b25abcbf4da802430a Mon Sep 17 00:00:00 2001 From: Curve Date: Mon, 20 May 2024 19:09:21 +0200 Subject: [PATCH] chore(cmake): disable unknown warning option --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 783a5de..399126a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,6 +35,8 @@ if (NOT MSVC) else() target_compile_options(${PROJECT_NAME} PUBLIC -Wno-unknown-attributes) endif() + + target_compile_options(${PROJECT_NAME} PRIVATE -Wno-unknown-warning-option) endif() # --------------------------------------------------------------------------------------------------------