GUI: Remove support for Qt4 in gui.pro
This commit is contained in:
parent
89cf19fdc1
commit
4bde6f77ed
|
@ -1,3 +1,5 @@
|
||||||
|
lessThan(QT_MAJOR_VERSION, 5): error(requires >= Qt 5 (You used: $$QT_VERSION))
|
||||||
|
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
TARGET = cppcheck-gui
|
TARGET = cppcheck-gui
|
||||||
CONFIG += warn_on debug
|
CONFIG += warn_on debug
|
||||||
|
@ -5,10 +7,8 @@ DEPENDPATH += . \
|
||||||
../lib
|
../lib
|
||||||
INCLUDEPATH += . \
|
INCLUDEPATH += . \
|
||||||
../lib
|
../lib
|
||||||
greaterThan(QT_MAJOR_VERSION, 4) {
|
QT += widgets
|
||||||
QT += widgets # In Qt 5 widgets are in separate module
|
QT += printsupport
|
||||||
QT += printsupport # In Qt 5 QPrinter/QPrintDialog are in separate module
|
|
||||||
}
|
|
||||||
|
|
||||||
contains(LINKCORE, [yY][eE][sS]) {
|
contains(LINKCORE, [yY][eE][sS]) {
|
||||||
LIBS += -l../bin/cppcheck-core
|
LIBS += -l../bin/cppcheck-core
|
||||||
|
|
Loading…
Reference in New Issue