From 819ebb61bce836e03c1e17f5702e25831379585a Mon Sep 17 00:00:00 2001 From: Nameless Date: Wed, 18 Dec 2024 10:07:58 -0600 Subject: [PATCH] build: pass -Wno-dev to cmake by default, the messages are not useful for users --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index d1de1e6a..917bcddc 100644 --- a/Makefile +++ b/Makefile @@ -142,6 +142,7 @@ endif #### End of gmake #### ############################################################################### CONFIGURE_FLAGS = \ + -Wno-dev \ -DCMAKE_BUILD_TYPE=$(CMAKE_BUILD_TYPE) \ -DWITH_AMALG=$(WITH_AMALG) \ -DWITH_LUA_ENGINE=$(WITH_LUA_ENGINE) \