1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 18:22:10 +02:00
falkonOfficial/src/plugins/plugins.pro

45 lines
1.3 KiB
Prolog
Raw Normal View History

TEMPLATE = subdirs
include(../defines.pri)
defineTest(addSubdir) {
for(subdir, 1) {
entries = $$files($$subdir/*)
for(entry, entries) {
fullPath = $$replace(entry, ;,"")
2013-06-17 01:16:50 +02:00
fullPath = $$replace(fullPath, \\\\, /)
name = $$replace(fullPath, $$re_escape("$$subdir/"), "")
os2|win32: fullPath = $$lower($$fullPath)
exists($$fullPath/*.pro): SUBDIRS += $$fullPath
}
}
export (SUBDIRS)
}
defineTest(disablePlugin) {
SUBDIRS -= $$PWD/$$1
os2|win32: SUBDIRS -= $$lower($$PWD/$$1)
export(SUBDIRS)
}
addSubdir($$PWD)
2015-10-02 14:29:38 +02:00
outOfDirPlugins = $$(QUPZILLA_PLUGINS_SRCDIR)
!equals(outOfDirPlugins, ""): addSubdir($$(QUPZILLA_PLUGINS_SRCDIR))
# TestPlugin only in debug build
!CONFIG(debug, debug|release): disablePlugin(TestPlugin)
2014-09-23 23:03:54 +02:00
# KWalletPasswords only with KDE_INTEGRATION and KWallet framework
!contains(DEFINES, KDE_INTEGRATION): disablePlugin(KWalletPasswords)
!qtHaveModule(KWallet): disablePlugin(KWalletPasswords)
2014-09-23 23:03:54 +02:00
# GnomeKeyringPasswords only with GNOME_INTEGRATION and gnome-keyring pkg-config
!contains(DEFINES, GNOME_INTEGRATION): disablePlugin(GnomeKeyringPasswords)
!system(pkg-config --exists gnome-keyring-1): disablePlugin(GnomeKeyringPasswords)
# QtWebEngine disable
disablePlugin(AccessKeysNavigation)