mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 17:42:10 +01:00
49 lines
1.3 KiB
Plaintext
49 lines
1.3 KiB
Plaintext
|
include(defines.pri)
|
||
|
|
||
|
INCLUDEPATH += $$PWD/lib/3rdparty\
|
||
|
$$PWD/lib/app\
|
||
|
$$PWD/lib/autofill\
|
||
|
$$PWD/lib/bookmarks\
|
||
|
$$PWD/lib/cookies\
|
||
|
$$PWD/lib/downloads\
|
||
|
$$PWD/lib/history\
|
||
|
$$PWD/lib/navigation\
|
||
|
$$PWD/lib/network\
|
||
|
$$PWD/lib/other\
|
||
|
$$PWD/lib/preferences\
|
||
|
$$PWD/lib/rss\
|
||
|
$$PWD/lib/tools\
|
||
|
$$PWD/lib/utils\
|
||
|
$$PWD/lib/webview\
|
||
|
$$PWD/lib/plugins\
|
||
|
$$PWD/lib/sidebar\
|
||
|
$$PWD/lib/data\
|
||
|
$$PWD/lib/adblock\
|
||
|
$$PWD/lib/desktopnotifications\
|
||
|
$$PWD/lib/opensearch\
|
||
|
$$PWD/lib/bookmarksimport\
|
||
|
$$PWD/lib/popupwindow\
|
||
|
|
||
|
TEMPLATE = lib
|
||
|
CONFIG += plugin
|
||
|
DESTDIR = $$PWD/../bin/plugins/
|
||
|
|
||
|
OBJECTS_DIR = build
|
||
|
MOC_DIR = build
|
||
|
RCC_DIR = build
|
||
|
UI_DIR = build
|
||
|
|
||
|
LIBS += -L $$PWD/../bin -lqupzilla
|
||
|
|
||
|
!mac:unix {
|
||
|
target.path = $$library_folder/qupzilla
|
||
|
|
||
|
INSTALLS += target
|
||
|
}
|
||
|
|
||
|
updateqm.input = TRANSLATIONS
|
||
|
updateqm.output = locale/${QMAKE_FILE_BASE}.qm
|
||
|
updateqm.commands = $$QMAKE_LRELEASE -silent ${QMAKE_FILE_IN} -qm locale/${QMAKE_FILE_BASE}.qm
|
||
|
updateqm.CONFIG += no_link target_predeps
|
||
|
QMAKE_EXTRA_COMPILERS += updateqm
|