mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-14 11:02:19 +01:00
74883f8af4
Should fix problems with shadow builds. Closes #1252
40 lines
905 B
Prolog
40 lines
905 B
Prolog
include(../defines.pri)
|
|
|
|
isEqual(QT_MAJOR_VERSION, 5) {
|
|
QT += webkitwidgets network widgets printsupport sql script
|
|
} else {
|
|
QT += core gui webkit sql network script
|
|
}
|
|
|
|
TARGET = qupzilla
|
|
mac: TARGET = QupZilla
|
|
|
|
TEMPLATE = app
|
|
|
|
!unix|mac: LIBS += -L$$QZ_DESTDIR -lQupZilla
|
|
!mac:unix: LIBS += $$QZ_DESTDIR/libQupZilla.so
|
|
|
|
unix:!contains(DEFINES, "DISABLE_DBUS") QT += dbus
|
|
|
|
INCLUDEPATH += ../lib/app\
|
|
../lib/3rdparty\
|
|
../lib/session\
|
|
../lib/webview
|
|
|
|
DEPENDPATH += ../lib/app\
|
|
../lib/3rdparty\
|
|
../lib/session\
|
|
../lib/webview
|
|
|
|
SOURCES = main.cpp
|
|
OTHER_FILES += appicon.rc \
|
|
appicon_os2.rc \
|
|
Info.plist
|
|
|
|
os2:RC_FILE = appicon_os2.rc
|
|
win32:RC_FILE = appicon.rc
|
|
|
|
include(../install.pri)
|
|
|
|
unix:contains(DEFINES, "NO_SYSTEM_DATAPATH"): QMAKE_LFLAGS+=$${QMAKE_LFLAGS_RPATH}\\$\$ORIGIN
|