From 4e1c8a2f5254548011f383eb9f1ce5e412ca09da Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Fri, 15 Apr 2022 15:21:23 -0400 Subject: [PATCH] Separate branches for g++ and clang++ --- oscar/oscar.pro | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/oscar/oscar.pro b/oscar/oscar.pro index 2d88dd0a..ff48ecb9 100644 --- a/oscar/oscar.pro +++ b/oscar/oscar.pro @@ -537,16 +537,16 @@ gcc | clang { } ## equals($$QMAKE_CXX, "gcc") : { // guess what! the name is really "g++" -gcc { - message("Detected compiler type gcc") +equals(QMAKE_CXX, g++) { + message("Detected compiler g++") greaterThan(COMPILER_MAJOR, 10) : { QMAKE_CFLAGS += -Wno-error=stringop-overread QMAKE_CXXFLAGS += -Wno-error=stringop-overread message("Making stringop-overread a non-error") } } -clang { - message("Detected comiler type clang") +equals(QMAKE_CXX, clang++) { + message("Detected compiler clang++") }