mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
89e091f09c
It doesn't include plugins yet. Even thought the app can be built with Qt5 now, it won't run. I am still working on a fix.
24 lines
541 B
INI
24 lines
541 B
INI
#-------------------------------------------------
|
|
#
|
|
# QupZilla - QtWebKit browser
|
|
#
|
|
# Project created by QtCreator 2010-12-18T14:53:41
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
lessThan(QT_VERSION, 4.7) {
|
|
error("QupZilla requires at least Qt 4.7!")
|
|
}
|
|
|
|
# Create plugins directory first on Mac / Linux
|
|
mac|unix: system(test -d bin/plugins || mkdir bin/plugins)
|
|
|
|
TEMPLATE = subdirs
|
|
SUBDIRS = src/lib src/main
|
|
CONFIG += ordered
|
|
|
|
# TODO: Fix plugins for Qt5
|
|
!isEqual(QT_MAJOR_VERSION, 5) {
|
|
SUBDIRS += src/plugins
|
|
}
|