mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 07:15:35 +08:00
Mark qwt include path as system include for GCC
That way, warnings in qwt headers are no longer raised.
This commit is contained in:
committed by
Mat Sutcliffe
parent
e68693a35e
commit
97b6131104
@@ -11,7 +11,20 @@ swiftConfig(static) {
|
||||
}
|
||||
|
||||
INCLUDEPATH += ..
|
||||
INCLUDEPATH *= $$EXTERNALSROOT/common/include/qwt
|
||||
|
||||
msvc {
|
||||
INCLUDEPATH *= $$EXTERNALSROOT/common/include/qwt
|
||||
}
|
||||
else:mingw {
|
||||
QMAKE_CXXFLAGS += -isystem $$EXTERNALSROOT/common/include/qwt
|
||||
}
|
||||
else:macx {
|
||||
INCLUDEPATH *= $$EXTERNALSROOT/common/include/qwt
|
||||
}
|
||||
else {
|
||||
QMAKE_CXXFLAGS += -idirafter $$EXTERNALSROOT/common/include/qwt
|
||||
}
|
||||
|
||||
DEPENDPATH += . ..
|
||||
|
||||
PRECOMPILED_HEADER = pch/pch.h
|
||||
|
||||
Reference in New Issue
Block a user