mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 10:46:35 +01:00
Fixed building with CONFIG+=build_plugins
This commit is contained in:
parent
7ceed34b05
commit
ba65648eae
5
BUILDING
5
BUILDING
@ -22,11 +22,12 @@ Building plugins
|
|||||||
----------------------------------------------------------------------------------
|
----------------------------------------------------------------------------------
|
||||||
|
|
||||||
To build plugins, it is neccessary to build QupZilla as static library first.
|
To build plugins, it is neccessary to build QupZilla as static library first.
|
||||||
You will do this by running this command
|
You can do this by running this command
|
||||||
|
|
||||||
qmake CONFIG+=build_plugins
|
qmake CONFIG+=build_plugins
|
||||||
|
|
||||||
and then build the whole project.
|
and then build the project.
|
||||||
|
You will now have the libqupzilla.a static library that you need to link to plugins.
|
||||||
|
|
||||||
Microsoft Windows
|
Microsoft Windows
|
||||||
----------------------------------------------------------------------------------
|
----------------------------------------------------------------------------------
|
||||||
|
@ -11,9 +11,5 @@ lessThan(QT_VERSION, 4.7) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
TEMPLATE = subdirs
|
TEMPLATE = subdirs
|
||||||
|
SUBDIRS = src
|
||||||
build_plugins {
|
build_plugins: SUBDIRS += plugins
|
||||||
SUBDIRS += plugins
|
|
||||||
}
|
|
||||||
|
|
||||||
SUBDIRS += src
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
include(../../src/3rdparty/qtsingleapplication.pri)
|
include(../../src/3rdparty/qtsingleapplication.pri)
|
||||||
include(../../defines.pri)
|
include(../../defines.pri)
|
||||||
|
include(../../install.pri)
|
||||||
include(../../src/src.pri)
|
include(../../src/src.pri)
|
||||||
|
|
||||||
QT += core gui webkit sql network script
|
QT += core gui webkit sql network script
|
||||||
@ -11,5 +12,6 @@ CONFIG -= shared
|
|||||||
CONFIG += static
|
CONFIG += static
|
||||||
|
|
||||||
DESTDIR = $$PWD
|
DESTDIR = $$PWD
|
||||||
|
OBJECTS_DIR = $$PWD/build
|
||||||
RESOURCES =
|
RESOURCES =
|
||||||
win32|os2:RC_FILE =
|
win32|os2:RC_FILE =
|
||||||
|
@ -1,2 +1,7 @@
|
|||||||
TEMPLATE = subdirs
|
TEMPLATE = subdirs
|
||||||
SUBDIRS = libqupzilla TestPlugin
|
|
||||||
|
sub_lib.subdir = libqupzilla
|
||||||
|
sub_testplugin.subdir = TestPlugin
|
||||||
|
sub_testplugin.depends = sub_lib
|
||||||
|
|
||||||
|
SUBDIRS = sub_lib sub_testplugin
|
||||||
|
615
src/src.pri
615
src/src.pri
@ -1,3 +1,4 @@
|
|||||||
|
DEPENDPATH = $$PWD
|
||||||
INCLUDEPATH += $$PWD/3rdparty\
|
INCLUDEPATH += $$PWD/3rdparty\
|
||||||
$$PWD/app\
|
$$PWD/app\
|
||||||
$$PWD/autofill\
|
$$PWD/autofill\
|
||||||
@ -22,319 +23,319 @@ INCLUDEPATH += $$PWD/3rdparty\
|
|||||||
$$PWD/bookmarksimport\
|
$$PWD/bookmarksimport\
|
||||||
$$PWD/popupwindow\
|
$$PWD/popupwindow\
|
||||||
|
|
||||||
SOURCES += $$PWD/main.cpp\
|
SOURCES += main.cpp\
|
||||||
$$PWD/3rdparty/qtwin.cpp \
|
3rdparty/qtwin.cpp \
|
||||||
$$PWD/3rdparty/lineedit.cpp \
|
3rdparty/lineedit.cpp \
|
||||||
$$PWD/app/qupzilla.cpp \
|
app/qupzilla.cpp \
|
||||||
$$PWD/app/mainapplication.cpp \
|
app/mainapplication.cpp \
|
||||||
$$PWD/app/autosaver.cpp \
|
app/autosaver.cpp \
|
||||||
$$PWD/autofill/autofillmodel.cpp \
|
autofill/autofillmodel.cpp \
|
||||||
$$PWD/preferences/autofillmanager.cpp \
|
preferences/autofillmanager.cpp \
|
||||||
$$PWD/bookmarks/bookmarkstoolbar.cpp \
|
bookmarks/bookmarkstoolbar.cpp \
|
||||||
$$PWD/bookmarks/bookmarksmanager.cpp \
|
bookmarks/bookmarksmanager.cpp \
|
||||||
$$PWD/cookies/cookiemanager.cpp \
|
cookies/cookiemanager.cpp \
|
||||||
$$PWD/cookies/cookiejar.cpp \
|
cookies/cookiejar.cpp \
|
||||||
$$PWD/downloads/downloadmanager.cpp \
|
downloads/downloadmanager.cpp \
|
||||||
$$PWD/history/historymodel.cpp \
|
history/historymodel.cpp \
|
||||||
$$PWD/history/historymanager.cpp \
|
history/historymanager.cpp \
|
||||||
$$PWD/navigation/websearchbar.cpp \
|
navigation/websearchbar.cpp \
|
||||||
$$PWD/navigation/locationcompleter.cpp \
|
navigation/locationcompleter.cpp \
|
||||||
$$PWD/navigation/locationbar.cpp \
|
navigation/locationbar.cpp \
|
||||||
$$PWD/network/networkmanagerproxy.cpp \
|
network/networkmanagerproxy.cpp \
|
||||||
$$PWD/network/networkmanager.cpp \
|
network/networkmanager.cpp \
|
||||||
$$PWD/other/updater.cpp \
|
other/updater.cpp \
|
||||||
$$PWD/other/sourceviewer.cpp \
|
other/sourceviewer.cpp \
|
||||||
$$PWD/preferences/preferences.cpp \
|
preferences/preferences.cpp \
|
||||||
$$PWD/rss/rssmanager.cpp \
|
rss/rssmanager.cpp \
|
||||||
$$PWD/other/clearprivatedata.cpp \
|
other/clearprivatedata.cpp \
|
||||||
$$PWD/webview/webpage.cpp \
|
webview/webpage.cpp \
|
||||||
$$PWD/webview/tabwidget.cpp \
|
webview/tabwidget.cpp \
|
||||||
$$PWD/webview/tabbar.cpp \
|
webview/tabbar.cpp \
|
||||||
$$PWD/webview/siteinfo.cpp \
|
webview/siteinfo.cpp \
|
||||||
$$PWD/webview/searchtoolbar.cpp \
|
webview/searchtoolbar.cpp \
|
||||||
$$PWD/app/commandlineoptions.cpp \
|
app/commandlineoptions.cpp \
|
||||||
$$PWD/other/aboutdialog.cpp \
|
other/aboutdialog.cpp \
|
||||||
$$PWD/plugins/plugins.cpp \
|
plugins/plugins.cpp \
|
||||||
$$PWD/preferences/pluginslist.cpp \
|
preferences/pluginslist.cpp \
|
||||||
$$PWD/plugins/pluginproxy.cpp \
|
plugins/pluginproxy.cpp \
|
||||||
$$PWD/tools/clickablelabel.cpp \
|
tools/clickablelabel.cpp \
|
||||||
$$PWD/downloads/downloadoptionsdialog.cpp \
|
downloads/downloadoptionsdialog.cpp \
|
||||||
$$PWD/tools/treewidget.cpp \
|
tools/treewidget.cpp \
|
||||||
$$PWD/bookmarks/bookmarkswidget.cpp \
|
bookmarks/bookmarkswidget.cpp \
|
||||||
$$PWD/tools/frame.cpp \
|
tools/frame.cpp \
|
||||||
$$PWD/bookmarks/bookmarksmodel.cpp \
|
bookmarks/bookmarksmodel.cpp \
|
||||||
$$PWD/sidebar/sidebar.cpp \
|
sidebar/sidebar.cpp \
|
||||||
$$PWD/webview/siteinfowidget.cpp \
|
webview/siteinfowidget.cpp \
|
||||||
$$PWD/plugins/clicktoflash.cpp \
|
plugins/clicktoflash.cpp \
|
||||||
$$PWD/plugins/webpluginfactory.cpp \
|
plugins/webpluginfactory.cpp \
|
||||||
$$PWD/downloads/downloaditem.cpp \
|
downloads/downloaditem.cpp \
|
||||||
$$PWD/3rdparty/ecwin7.cpp \
|
3rdparty/ecwin7.cpp \
|
||||||
$$PWD/webview/webtab.cpp \
|
webview/webtab.cpp \
|
||||||
$$PWD/rss/rsswidget.cpp \
|
rss/rsswidget.cpp \
|
||||||
$$PWD/autofill/autofillnotification.cpp \
|
autofill/autofillnotification.cpp \
|
||||||
$$PWD/rss/rssnotification.cpp \
|
rss/rssnotification.cpp \
|
||||||
$$PWD/navigation/locationpopup.cpp \
|
navigation/locationpopup.cpp \
|
||||||
$$PWD/preferences/sslmanager.cpp \
|
preferences/sslmanager.cpp \
|
||||||
$$PWD/tools/animatedwidget.cpp \
|
tools/animatedwidget.cpp \
|
||||||
$$PWD/tools/htmlhighlighter.cpp \
|
tools/htmlhighlighter.cpp \
|
||||||
$$PWD/other/sourceviewersearch.cpp \
|
other/sourceviewersearch.cpp \
|
||||||
$$PWD/adblock/adblocksubscription.cpp \
|
adblock/adblocksubscription.cpp \
|
||||||
$$PWD/adblock/adblockrule.cpp \
|
adblock/adblockrule.cpp \
|
||||||
$$PWD/adblock/adblockpage.cpp \
|
adblock/adblockpage.cpp \
|
||||||
$$PWD/adblock/adblocknetwork.cpp \
|
adblock/adblocknetwork.cpp \
|
||||||
$$PWD/adblock/adblockmanager.cpp \
|
adblock/adblockmanager.cpp \
|
||||||
$$PWD/adblock/adblockdialog.cpp \
|
adblock/adblockdialog.cpp \
|
||||||
$$PWD/adblock/adblockblockednetworkreply.cpp \
|
adblock/adblockblockednetworkreply.cpp \
|
||||||
$$PWD/adblock/adblockicon.cpp \
|
adblock/adblockicon.cpp \
|
||||||
$$PWD/tools/docktitlebarwidget.cpp \
|
tools/docktitlebarwidget.cpp \
|
||||||
$$PWD/sidebar/bookmarkssidebar.cpp \
|
sidebar/bookmarkssidebar.cpp \
|
||||||
$$PWD/bookmarks/bookmarkicon.cpp \
|
bookmarks/bookmarkicon.cpp \
|
||||||
$$PWD/sidebar/historysidebar.cpp \
|
sidebar/historysidebar.cpp \
|
||||||
$$PWD/desktopnotifications/desktopnotification.cpp \
|
desktopnotifications/desktopnotification.cpp \
|
||||||
$$PWD/desktopnotifications/desktopnotificationsfactory.cpp \
|
desktopnotifications/desktopnotificationsfactory.cpp \
|
||||||
$$PWD/tools/progressbar.cpp \
|
tools/progressbar.cpp \
|
||||||
$$PWD/tools/iconprovider.cpp \
|
tools/iconprovider.cpp \
|
||||||
$$PWD/network/networkproxyfactory.cpp \
|
network/networkproxyfactory.cpp \
|
||||||
$$PWD/tools/closedtabsmanager.cpp \
|
tools/closedtabsmanager.cpp \
|
||||||
$$PWD/other/statusbarmessage.cpp \
|
other/statusbarmessage.cpp \
|
||||||
$$PWD/tools/buttonbox.cpp \
|
tools/buttonbox.cpp \
|
||||||
$$PWD/tools/widget.cpp \
|
tools/widget.cpp \
|
||||||
$$PWD/3rdparty/squeezelabelv2.cpp \
|
3rdparty/squeezelabelv2.cpp \
|
||||||
$$PWD/3rdparty/squeezelabelv1.cpp \
|
3rdparty/squeezelabelv1.cpp \
|
||||||
$$PWD/tools/buttonwithmenu.cpp \
|
tools/buttonwithmenu.cpp \
|
||||||
$$PWD/navigation/locationbarsettings.cpp \
|
navigation/locationbarsettings.cpp \
|
||||||
$$PWD/other/browsinglibrary.cpp \
|
other/browsinglibrary.cpp \
|
||||||
$$PWD/3rdparty/stylehelper.cpp \
|
3rdparty/stylehelper.cpp \
|
||||||
$$PWD/3rdparty/fancytabwidget.cpp \
|
3rdparty/fancytabwidget.cpp \
|
||||||
$$PWD/history/webhistoryinterface.cpp \
|
history/webhistoryinterface.cpp \
|
||||||
$$PWD/tools/toolbutton.cpp \
|
tools/toolbutton.cpp \
|
||||||
$$PWD/navigation/navigationbar.cpp \
|
navigation/navigationbar.cpp \
|
||||||
$$PWD/navigation/reloadstopbutton.cpp \
|
navigation/reloadstopbutton.cpp \
|
||||||
$$PWD/preferences/thememanager.cpp \
|
preferences/thememanager.cpp \
|
||||||
$$PWD/network/qupzillaschemehandler.cpp \
|
network/qupzillaschemehandler.cpp \
|
||||||
$$PWD/tools/globalfunctions.cpp \
|
tools/globalfunctions.cpp \
|
||||||
$$PWD/other/pagescreen.cpp \
|
other/pagescreen.cpp \
|
||||||
$$PWD/downloads/downloadfilehelper.cpp \
|
downloads/downloadfilehelper.cpp \
|
||||||
$$PWD/tools/certificateinfowidget.cpp \
|
tools/certificateinfowidget.cpp \
|
||||||
$$PWD/webview/webinspectordockwidget.cpp \
|
webview/webinspectordockwidget.cpp \
|
||||||
$$PWD/app/profileupdater.cpp \
|
app/profileupdater.cpp \
|
||||||
$$PWD/preferences/acceptlanguage.cpp \
|
preferences/acceptlanguage.cpp \
|
||||||
$$PWD/opensearch/opensearchreader.cpp \
|
opensearch/opensearchreader.cpp \
|
||||||
$$PWD/opensearch/opensearchengine.cpp \
|
opensearch/opensearchengine.cpp \
|
||||||
$$PWD/opensearch/opensearchenginedelegate.cpp \
|
opensearch/opensearchenginedelegate.cpp \
|
||||||
$$PWD/opensearch/searchenginesmanager.cpp \
|
opensearch/searchenginesmanager.cpp \
|
||||||
$$PWD/opensearch/searchenginesdialog.cpp \
|
opensearch/searchenginesdialog.cpp \
|
||||||
$$PWD/opensearch/editsearchengine.cpp \
|
opensearch/editsearchengine.cpp \
|
||||||
$$PWD/bookmarksimport/firefoximporter.cpp \
|
bookmarksimport/firefoximporter.cpp \
|
||||||
$$PWD/bookmarksimport/chromeimporter.cpp \
|
bookmarksimport/chromeimporter.cpp \
|
||||||
$$PWD/bookmarksimport/operaimporter.cpp \
|
bookmarksimport/operaimporter.cpp \
|
||||||
$$PWD/bookmarksimport/bookmarksimportdialog.cpp \
|
bookmarksimport/bookmarksimportdialog.cpp \
|
||||||
$$PWD/tools/iconfetcher.cpp \
|
tools/iconfetcher.cpp \
|
||||||
$$PWD/tools/followredirectreply.cpp \
|
tools/followredirectreply.cpp \
|
||||||
$$PWD/webview/webhistorywrapper.cpp \
|
webview/webhistorywrapper.cpp \
|
||||||
$$PWD/tools/pagethumbnailer.cpp \
|
tools/pagethumbnailer.cpp \
|
||||||
$$PWD/plugins/speeddial.cpp \
|
plugins/speeddial.cpp \
|
||||||
$$PWD/other/databasewriter.cpp \
|
other/databasewriter.cpp \
|
||||||
$$PWD/bookmarksimport/htmlimporter.cpp \
|
bookmarksimport/htmlimporter.cpp \
|
||||||
$$PWD/tools/enhancedmenu.cpp \
|
tools/enhancedmenu.cpp \
|
||||||
$$PWD/navigation/siteicon.cpp \
|
navigation/siteicon.cpp \
|
||||||
$$PWD/navigation/goicon.cpp \
|
navigation/goicon.cpp \
|
||||||
$$PWD/rss/rssicon.cpp \
|
rss/rssicon.cpp \
|
||||||
$$PWD/navigation/downicon.cpp \
|
navigation/downicon.cpp \
|
||||||
$$PWD/network/cabundleupdater.cpp \
|
network/cabundleupdater.cpp \
|
||||||
$$PWD/app/settings.cpp \
|
app/settings.cpp \
|
||||||
$$PWD/app/proxystyle.cpp \
|
app/proxystyle.cpp \
|
||||||
$$PWD/popupwindow/popupwebpage.cpp \
|
popupwindow/popupwebpage.cpp \
|
||||||
$$PWD/webview/popupwebview.cpp \
|
webview/popupwebview.cpp \
|
||||||
$$PWD/popupwindow/popupwindow.cpp \
|
popupwindow/popupwindow.cpp \
|
||||||
$$PWD/popupwindow/popuplocationbar.cpp \
|
popupwindow/popuplocationbar.cpp \
|
||||||
$$PWD/webview/tabbedwebview.cpp \
|
webview/tabbedwebview.cpp \
|
||||||
$$PWD/webview/webview.cpp \
|
webview/webview.cpp \
|
||||||
$$PWD/webview/webviewsettings.cpp
|
webview/webviewsettings.cpp
|
||||||
|
|
||||||
HEADERS += \
|
HEADERS += \
|
||||||
$$PWD/3rdparty/qtwin.h \
|
3rdparty/qtwin.h \
|
||||||
$$PWD/3rdparty/lineedit.h \
|
3rdparty/lineedit.h \
|
||||||
$$PWD/app/qupzilla.h \
|
app/qupzilla.h \
|
||||||
$$PWD/app/mainapplication.h \
|
app/mainapplication.h \
|
||||||
$$PWD/app/autosaver.h \
|
app/autosaver.h \
|
||||||
$$PWD/autofill/autofillmodel.h \
|
autofill/autofillmodel.h \
|
||||||
$$PWD/preferences/autofillmanager.h \
|
preferences/autofillmanager.h \
|
||||||
$$PWD/bookmarks/bookmarkstoolbar.h \
|
bookmarks/bookmarkstoolbar.h \
|
||||||
$$PWD/bookmarks/bookmarksmanager.h \
|
bookmarks/bookmarksmanager.h \
|
||||||
$$PWD/cookies/cookiemanager.h \
|
cookies/cookiemanager.h \
|
||||||
$$PWD/cookies/cookiejar.h \
|
cookies/cookiejar.h \
|
||||||
$$PWD/downloads/downloadmanager.h \
|
downloads/downloadmanager.h \
|
||||||
$$PWD/history/historymodel.h \
|
history/historymodel.h \
|
||||||
$$PWD/history/historymanager.h \
|
history/historymanager.h \
|
||||||
$$PWD/navigation/websearchbar.h \
|
navigation/websearchbar.h \
|
||||||
$$PWD/navigation/locationcompleter.h \
|
navigation/locationcompleter.h \
|
||||||
$$PWD/navigation/locationbar.h \
|
navigation/locationbar.h \
|
||||||
$$PWD/network/networkmanagerproxy.h \
|
network/networkmanagerproxy.h \
|
||||||
$$PWD/network/networkmanager.h \
|
network/networkmanager.h \
|
||||||
$$PWD/other/updater.h \
|
other/updater.h \
|
||||||
$$PWD/other/sourceviewer.h \
|
other/sourceviewer.h \
|
||||||
$$PWD/preferences/preferences.h \
|
preferences/preferences.h \
|
||||||
$$PWD/rss/rssmanager.h \
|
rss/rssmanager.h \
|
||||||
$$PWD/other/clearprivatedata.h \
|
other/clearprivatedata.h \
|
||||||
$$PWD/webview/webpage.h \
|
webview/webpage.h \
|
||||||
$$PWD/webview/tabwidget.h \
|
webview/tabwidget.h \
|
||||||
$$PWD/webview/tabbar.h \
|
webview/tabbar.h \
|
||||||
$$PWD/webview/siteinfo.h \
|
webview/siteinfo.h \
|
||||||
$$PWD/webview/searchtoolbar.h \
|
webview/searchtoolbar.h \
|
||||||
$$PWD/app/commandlineoptions.h \
|
app/commandlineoptions.h \
|
||||||
$$PWD/other/aboutdialog.h \
|
other/aboutdialog.h \
|
||||||
$$PWD/plugins/plugininterface.h \
|
plugins/plugininterface.h \
|
||||||
$$PWD/plugins/plugins.h \
|
plugins/plugins.h \
|
||||||
$$PWD/preferences/pluginslist.h \
|
preferences/pluginslist.h \
|
||||||
$$PWD/plugins/pluginproxy.h \
|
plugins/pluginproxy.h \
|
||||||
$$PWD/tools/clickablelabel.h \
|
tools/clickablelabel.h \
|
||||||
$$PWD/downloads/downloadoptionsdialog.h \
|
downloads/downloadoptionsdialog.h \
|
||||||
$$PWD/tools/treewidget.h \
|
tools/treewidget.h \
|
||||||
$$PWD/bookmarks/bookmarkswidget.h \
|
bookmarks/bookmarkswidget.h \
|
||||||
$$PWD/tools/frame.h \
|
tools/frame.h \
|
||||||
$$PWD/bookmarks/bookmarksmodel.h \
|
bookmarks/bookmarksmodel.h \
|
||||||
$$PWD/sidebar/sidebar.h \
|
sidebar/sidebar.h \
|
||||||
$$PWD/webview/siteinfowidget.h \
|
webview/siteinfowidget.h \
|
||||||
$$PWD/plugins/clicktoflash.h \
|
plugins/clicktoflash.h \
|
||||||
$$PWD/plugins/webpluginfactory.h \
|
plugins/webpluginfactory.h \
|
||||||
$$PWD/downloads/downloaditem.h \
|
downloads/downloaditem.h \
|
||||||
$$PWD/3rdparty/ecwin7.h \
|
3rdparty/ecwin7.h \
|
||||||
$$PWD/webview/webtab.h \
|
webview/webtab.h \
|
||||||
$$PWD/rss/rsswidget.h \
|
rss/rsswidget.h \
|
||||||
$$PWD/autofill/autofillnotification.h \
|
autofill/autofillnotification.h \
|
||||||
$$PWD/rss/rssnotification.h \
|
rss/rssnotification.h \
|
||||||
$$PWD/navigation/locationpopup.h \
|
navigation/locationpopup.h \
|
||||||
$$PWD/preferences/sslmanager.h \
|
preferences/sslmanager.h \
|
||||||
$$PWD/tools/animatedwidget.h \
|
tools/animatedwidget.h \
|
||||||
$$PWD/tools/htmlhighlighter.h \
|
tools/htmlhighlighter.h \
|
||||||
$$PWD/other/sourceviewersearch.h \
|
other/sourceviewersearch.h \
|
||||||
$$PWD/adblock/adblocksubscription.h \
|
adblock/adblocksubscription.h \
|
||||||
$$PWD/adblock/adblockrule.h \
|
adblock/adblockrule.h \
|
||||||
$$PWD/adblock/adblockpage.h \
|
adblock/adblockpage.h \
|
||||||
$$PWD/adblock/adblocknetwork.h \
|
adblock/adblocknetwork.h \
|
||||||
$$PWD/adblock/adblockmanager.h \
|
adblock/adblockmanager.h \
|
||||||
$$PWD/adblock/adblockdialog.h \
|
adblock/adblockdialog.h \
|
||||||
$$PWD/adblock/adblockblockednetworkreply.h \
|
adblock/adblockblockednetworkreply.h \
|
||||||
$$PWD/adblock/adblockicon.h \
|
adblock/adblockicon.h \
|
||||||
$$PWD/tools/docktitlebarwidget.h \
|
tools/docktitlebarwidget.h \
|
||||||
$$PWD/sidebar/bookmarkssidebar.h \
|
sidebar/bookmarkssidebar.h \
|
||||||
$$PWD/bookmarks/bookmarkicon.h \
|
bookmarks/bookmarkicon.h \
|
||||||
$$PWD/sidebar/historysidebar.h \
|
sidebar/historysidebar.h \
|
||||||
$$PWD/desktopnotifications/desktopnotification.h \
|
desktopnotifications/desktopnotification.h \
|
||||||
$$PWD/desktopnotifications/desktopnotificationsfactory.h \
|
desktopnotifications/desktopnotificationsfactory.h \
|
||||||
$$PWD/tools/progressbar.h \
|
tools/progressbar.h \
|
||||||
$$PWD/tools/iconprovider.h \
|
tools/iconprovider.h \
|
||||||
$$PWD/network/networkproxyfactory.h \
|
network/networkproxyfactory.h \
|
||||||
$$PWD/tools/closedtabsmanager.h \
|
tools/closedtabsmanager.h \
|
||||||
$$PWD/other/statusbarmessage.h \
|
other/statusbarmessage.h \
|
||||||
$$PWD/tools/buttonbox.h \
|
tools/buttonbox.h \
|
||||||
$$PWD/tools/widget.h \
|
tools/widget.h \
|
||||||
$$PWD/3rdparty/squeezelabelv2.h \
|
3rdparty/squeezelabelv2.h \
|
||||||
$$PWD/3rdparty/squeezelabelv1.h \
|
3rdparty/squeezelabelv1.h \
|
||||||
$$PWD/tools/buttonwithmenu.h \
|
tools/buttonwithmenu.h \
|
||||||
$$PWD/navigation/locationbarsettings.h \
|
navigation/locationbarsettings.h \
|
||||||
$$PWD/other/browsinglibrary.h \
|
other/browsinglibrary.h \
|
||||||
$$PWD/3rdparty/stylehelper.h \
|
3rdparty/stylehelper.h \
|
||||||
$$PWD/3rdparty/fancytabwidget.h \
|
3rdparty/fancytabwidget.h \
|
||||||
$$PWD/history/webhistoryinterface.h \
|
history/webhistoryinterface.h \
|
||||||
$$PWD/tools/toolbutton.h \
|
tools/toolbutton.h \
|
||||||
$$PWD/navigation/navigationbar.h \
|
navigation/navigationbar.h \
|
||||||
$$PWD/navigation/reloadstopbutton.h \
|
navigation/reloadstopbutton.h \
|
||||||
$$PWD/preferences/thememanager.h \
|
preferences/thememanager.h \
|
||||||
$$PWD/network/qupzillaschemehandler.h \
|
network/qupzillaschemehandler.h \
|
||||||
$$PWD/tools/globalfunctions.h \
|
tools/globalfunctions.h \
|
||||||
$$PWD/other/pagescreen.h \
|
other/pagescreen.h \
|
||||||
$$PWD/downloads/downloadfilehelper.h \
|
downloads/downloadfilehelper.h \
|
||||||
$$PWD/tools/certificateinfowidget.h \
|
tools/certificateinfowidget.h \
|
||||||
$$PWD/webview/webinspectordockwidget.h \
|
webview/webinspectordockwidget.h \
|
||||||
$$PWD/3rdparty/msvc2008.h \
|
3rdparty/msvc2008.h \
|
||||||
$$PWD/app/profileupdater.h \
|
app/profileupdater.h \
|
||||||
$$PWD/preferences/acceptlanguage.h \
|
preferences/acceptlanguage.h \
|
||||||
$$PWD/opensearch/opensearchreader.h \
|
opensearch/opensearchreader.h \
|
||||||
$$PWD/opensearch/opensearchengine.h \
|
opensearch/opensearchengine.h \
|
||||||
$$PWD/opensearch/opensearchenginedelegate.h \
|
opensearch/opensearchenginedelegate.h \
|
||||||
$$PWD/opensearch/searchenginesmanager.h \
|
opensearch/searchenginesmanager.h \
|
||||||
$$PWD/opensearch/searchenginesdialog.h \
|
opensearch/searchenginesdialog.h \
|
||||||
$$PWD/opensearch/editsearchengine.h \
|
opensearch/editsearchengine.h \
|
||||||
$$PWD/bookmarksimport/firefoximporter.h \
|
bookmarksimport/firefoximporter.h \
|
||||||
$$PWD/bookmarksimport/chromeimporter.h \
|
bookmarksimport/chromeimporter.h \
|
||||||
$$PWD/bookmarksimport/operaimporter.h \
|
bookmarksimport/operaimporter.h \
|
||||||
$$PWD/bookmarksimport/bookmarksimportdialog.h \
|
bookmarksimport/bookmarksimportdialog.h \
|
||||||
$$PWD/tools/iconfetcher.h \
|
tools/iconfetcher.h \
|
||||||
$$PWD/tools/followredirectreply.h \
|
tools/followredirectreply.h \
|
||||||
$$PWD/webview/webhistorywrapper.h \
|
webview/webhistorywrapper.h \
|
||||||
$$PWD/tools/pagethumbnailer.h \
|
tools/pagethumbnailer.h \
|
||||||
$$PWD/plugins/speeddial.h \
|
plugins/speeddial.h \
|
||||||
$$PWD/other/databasewriter.h \
|
other/databasewriter.h \
|
||||||
$$PWD/bookmarksimport/htmlimporter.h \
|
bookmarksimport/htmlimporter.h \
|
||||||
$$PWD/tools/enhancedmenu.h \
|
tools/enhancedmenu.h \
|
||||||
$$PWD/navigation/siteicon.h \
|
navigation/siteicon.h \
|
||||||
$$PWD/navigation/goicon.h \
|
navigation/goicon.h \
|
||||||
$$PWD/rss/rssicon.h \
|
rss/rssicon.h \
|
||||||
$$PWD/navigation/downicon.h \
|
navigation/downicon.h \
|
||||||
$$PWD/network/cabundleupdater.h \
|
network/cabundleupdater.h \
|
||||||
$$PWD/app/settings.h \
|
app/settings.h \
|
||||||
$$PWD/app/proxystyle.h \
|
app/proxystyle.h \
|
||||||
$$PWD/popupwindow/popupwebpage.h \
|
popupwindow/popupwebpage.h \
|
||||||
$$PWD/webview/popupwebview.h \
|
webview/popupwebview.h \
|
||||||
$$PWD/popupwindow/popupwindow.h \
|
popupwindow/popupwindow.h \
|
||||||
$$PWD/popupwindow/popuplocationbar.h \
|
popupwindow/popuplocationbar.h \
|
||||||
$$PWD/webview/tabbedwebview.h \
|
webview/tabbedwebview.h \
|
||||||
$$PWD/webview/webview.h \
|
webview/webview.h \
|
||||||
$$PWD/app/qz_namespace.h \
|
app/qz_namespace.h \
|
||||||
$$PWD/webview/webviewsettings.h
|
webview/webviewsettings.h
|
||||||
|
|
||||||
FORMS += \
|
FORMS += \
|
||||||
$$PWD/preferences/autofillmanager.ui \
|
preferences/autofillmanager.ui \
|
||||||
$$PWD/bookmarks/bookmarksmanager.ui \
|
bookmarks/bookmarksmanager.ui \
|
||||||
$$PWD/cookies/cookiemanager.ui \
|
cookies/cookiemanager.ui \
|
||||||
$$PWD/history/historymanager.ui \
|
history/historymanager.ui \
|
||||||
$$PWD/preferences/preferences.ui \
|
preferences/preferences.ui \
|
||||||
$$PWD/rss/rssmanager.ui \
|
rss/rssmanager.ui \
|
||||||
$$PWD/webview/siteinfo.ui \
|
webview/siteinfo.ui \
|
||||||
$$PWD/other/aboutdialog.ui \
|
other/aboutdialog.ui \
|
||||||
$$PWD/preferences/pluginslist.ui \
|
preferences/pluginslist.ui \
|
||||||
$$PWD/downloads/downloadoptionsdialog.ui \
|
downloads/downloadoptionsdialog.ui \
|
||||||
$$PWD/bookmarks/bookmarkswidget.ui \
|
bookmarks/bookmarkswidget.ui \
|
||||||
$$PWD/webview/siteinfowidget.ui \
|
webview/siteinfowidget.ui \
|
||||||
$$PWD/downloads/downloaditem.ui \
|
downloads/downloaditem.ui \
|
||||||
$$PWD/downloads/downloadmanager.ui \
|
downloads/downloadmanager.ui \
|
||||||
$$PWD/rss/rsswidget.ui \
|
rss/rsswidget.ui \
|
||||||
$$PWD/autofill/autofillnotification.ui \
|
autofill/autofillnotification.ui \
|
||||||
$$PWD/rss/rssnotification.ui \
|
rss/rssnotification.ui \
|
||||||
$$PWD/preferences/sslmanager.ui \
|
preferences/sslmanager.ui \
|
||||||
$$PWD/other/clearprivatedata.ui \
|
other/clearprivatedata.ui \
|
||||||
$$PWD/other/sourceviewersearch.ui \
|
other/sourceviewersearch.ui \
|
||||||
$$PWD/other/closedialog.ui \
|
other/closedialog.ui \
|
||||||
$$PWD/adblock/adblockdialog.ui \
|
adblock/adblockdialog.ui \
|
||||||
$$PWD/tools/docktitlebarwidget.ui \
|
tools/docktitlebarwidget.ui \
|
||||||
$$PWD/sidebar/bookmarkssidebar.ui \
|
sidebar/bookmarkssidebar.ui \
|
||||||
$$PWD/sidebar/historysidebar.ui \
|
sidebar/historysidebar.ui \
|
||||||
$$PWD/desktopnotifications/desktopnotification.ui \
|
desktopnotifications/desktopnotification.ui \
|
||||||
$$PWD/webview/jsconfirm.ui \
|
webview/jsconfirm.ui \
|
||||||
$$PWD/webview/jsalert.ui \
|
webview/jsalert.ui \
|
||||||
$$PWD/webview/jsprompt.ui \
|
webview/jsprompt.ui \
|
||||||
$$PWD/other/browsinglibrary.ui \
|
other/browsinglibrary.ui \
|
||||||
$$PWD/webview/searchtoolbar.ui \
|
webview/searchtoolbar.ui \
|
||||||
$$PWD/preferences/thememanager.ui \
|
preferences/thememanager.ui \
|
||||||
$$PWD/other/pagescreen.ui \
|
other/pagescreen.ui \
|
||||||
$$PWD/tools/certificateinfowidget.ui \
|
tools/certificateinfowidget.ui \
|
||||||
$$PWD/preferences/acceptlanguage.ui \
|
preferences/acceptlanguage.ui \
|
||||||
$$PWD/preferences/addacceptlanguage.ui \
|
preferences/addacceptlanguage.ui \
|
||||||
$$PWD/opensearch/searchenginesdialog.ui \
|
opensearch/searchenginesdialog.ui \
|
||||||
$$PWD/opensearch/editsearchengine.ui \
|
opensearch/editsearchengine.ui \
|
||||||
$$PWD/bookmarksimport/bookmarksimportdialog.ui
|
bookmarksimport/bookmarksimportdialog.ui
|
||||||
|
|
||||||
RESOURCES += \
|
RESOURCES += \
|
||||||
$$PWD/data/icons.qrc \
|
data/icons.qrc \
|
||||||
$$PWD/data/html.qrc \
|
data/html.qrc \
|
||||||
$$PWD/data/data.qrc
|
data/data.qrc
|
||||||
|
|
||||||
OTHER_FILES += \
|
OTHER_FILES += \
|
||||||
$$PWD/appicon.rc \
|
appicon.rc \
|
||||||
$$PWD/appicon_os2.rc \
|
appicon_os2.rc \
|
||||||
$$PWD/Info.plist
|
Info.plist
|
||||||
|
|
||||||
os2:RC_FILE = $$PWD/appicon_os2.rc
|
os2:RC_FILE = appicon_os2.rc
|
||||||
win32:RC_FILE = $$PWD/appicon.rc
|
win32:RC_FILE = appicon.rc
|
||||||
|
@ -16,7 +16,7 @@ TRANSLATIONS += $$PWD/translations/cs_CZ.ts\
|
|||||||
$$PWD/translations/sv_SE.ts\
|
$$PWD/translations/sv_SE.ts\
|
||||||
|
|
||||||
isEmpty(QMAKE_LRELEASE) {
|
isEmpty(QMAKE_LRELEASE) {
|
||||||
win32|os2:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\lrelease.exe
|
win32|os2:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\\lrelease.exe
|
||||||
else:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease
|
else:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease
|
||||||
unix {
|
unix {
|
||||||
!exists($$QMAKE_LRELEASE) { QMAKE_LRELEASE = lrelease-qt4 }
|
!exists($$QMAKE_LRELEASE) { QMAKE_LRELEASE = lrelease-qt4 }
|
||||||
|
Loading…
Reference in New Issue
Block a user