From 398d2ee5e186442aa9f41e849cf2900a3cc36935 Mon Sep 17 00:00:00 2001 From: Ziemas Date: Sat, 27 Jan 2024 19:10:00 +0100 Subject: [PATCH] cmake: Remove -Wmissing-include-dir (#3343) I'm tired of it spamming and I couldn't figure out what adds to non-existent fmt/include dir. --- CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 791677828c..718c117708 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -86,7 +86,6 @@ elseif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") -Wdisabled-optimization \ -Wformat \ -Wextra \ - -Wmissing-include-dirs \ -Woverloaded-virtual \ -Wredundant-decls \ -Wshadow \ @@ -113,7 +112,6 @@ elseif(CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang") -Wdisabled-optimization \ -Wformat \ -Wextra \ - -Wmissing-include-dirs \ -Woverloaded-virtual \ -Wredundant-decls \ -Wshadow \