From 228afd34051318acd731740dd10d0a60c4c188b0 Mon Sep 17 00:00:00 2001 From: PatTheMav Date: Wed, 31 Jul 2024 20:07:30 +0200 Subject: [PATCH] cmake: Downgrade deprecation error for GCC compilations Error has already been downgraded for Clang and AppleClang, not doing so for GCC was an oversight. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index e4ded991..cc6ac50e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -144,6 +144,7 @@ target_compile_options( $<$:-Wno-error=format-overflow> $<$:-Wno-error=int-conversion> $<$:-Wno-error=comment> + $<$:-Wno-error=deprecated-declarations> $<$:-Wno-error=null-pointer-subtraction> $<$:-Wno-error=deprecated-declarations> $<$:-Wno-error=implicit-int-conversion>