mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Add g++ version 10 test
This commit is contained in:
parent
265bdc2d7e
commit
dcf6dc5bd2
@ -490,6 +490,15 @@ DISTFILES += help/default.css \
|
||||
QMAKE_CFLAGS += -Werror
|
||||
QMAKE_CXXFLAGS += -Werror
|
||||
|
||||
gcc | clang {
|
||||
COMPILER_VERSION = $$system($$QMAKE_CXX " -dumpversion")
|
||||
COMPILER_MAJOR = $$str_member($$COMPILER_VERSION)
|
||||
greaterThan(COMPILER_MAJOR, 9) : {
|
||||
QMAKE_CFLAGS += -Wno-error=depreciated-copy
|
||||
QMAKE_CXX_FLAGS += -Wno-error=depreciated-copy
|
||||
message("Removing depreciated-copy error")
|
||||
}
|
||||
}
|
||||
# Make deprecation warnings just warnings
|
||||
QMAKE_CFLAGS += -Wno-error=deprecated-declarations
|
||||
QMAKE_CXXFLAGS += -Wno-error=deprecated-declarations
|
||||
|
Loading…
Reference in New Issue
Block a user