Update Valentina.pro to recognize GCC version 8.
--HG-- branch : release
This commit is contained in:
parent
5df1459c1d
commit
4936257f1a
|
@ -16,6 +16,10 @@ count(LIST, 1, >): error("The build will fail. Path '$${OUT_PWD}' contains space
|
||||||
unix {
|
unix {
|
||||||
*g++* {
|
*g++* {
|
||||||
GCC_VERSION = $$system("g++ -dumpversion")
|
GCC_VERSION = $$system("g++ -dumpversion")
|
||||||
|
contains(GCC_VERSION, ^8.*$) {
|
||||||
|
message( "g++ version 8.x found" )
|
||||||
|
CONFIG += g++8
|
||||||
|
} else {
|
||||||
contains(GCC_VERSION, ^7.*$) {
|
contains(GCC_VERSION, ^7.*$) {
|
||||||
message( "g++ version 7.x found" )
|
message( "g++ version 7.x found" )
|
||||||
CONFIG += g++7
|
CONFIG += g++7
|
||||||
|
@ -38,6 +42,7 @@ unix {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
TEMPLATE = subdirs
|
TEMPLATE = subdirs
|
||||||
|
|
Loading…
Reference in New Issue
Block a user