1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-11 01:22:10 +01:00

Merge pull request #1441 from niclasr/master

fix linking on qmake installations that use compile_libtool.
This commit is contained in:
David Rosca 2014-08-17 18:43:50 +02:00
commit 7a7be29e3a

View File

@ -11,8 +11,13 @@ mac: TARGET = QupZilla
TEMPLATE = app
compile_libtool {
LIBS += $$QZ_DESTDIR/libQupZilla.la
}
else {
!unix|mac: LIBS += -L$$QZ_DESTDIR -lQupZilla
!mac:unix: LIBS += $$QZ_DESTDIR/libQupZilla.so
}
unix:!contains(DEFINES, "DISABLE_DBUS") QT += dbus