From 2fa6b95ce2c8c6b25a5edc289be1a004c6e5e7c9 Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Sun, 1 May 2022 20:10:50 -0400 Subject: [PATCH] Test clang version for depr-copy --- oscar/oscar.pro | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/oscar/oscar.pro b/oscar/oscar.pro index 860d38a3..ecc83315 100644 --- a/oscar/oscar.pro +++ b/oscar/oscar.pro @@ -546,9 +546,11 @@ gcc:!clang { clang { message("Building for $$QMAKE_HOST.os") - QMAKE_CFLAGS_WARN_ON += -Wno-error=deprecated-copy - QMAKE_CXXFLAGS_WARN_ON += -Wno-error=deprecated-copy - message("Making deprecated-copy a non-error") + greaterThan(COMPILER_MAJOR, 9) : { + QMAKE_CFLAGS_WARN_ON += -Wno-error=deprecated-copy + QMAKE_CXXFLAGS_WARN_ON += -Wno-error=deprecated-copy + message("Making deprecated-copy a non-error") + } } # Make deprecation warnings just warnings