1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 10:46:35 +01:00

Added little info about building plugins into BUILDING

+ fixed build issue when building plugins
This commit is contained in:
nowrep 2012-02-18 19:20:07 +01:00
parent 7265592b2e
commit 7ceed34b05
3 changed files with 18 additions and 14 deletions

View File

@ -18,6 +18,15 @@ General
QupZilla requires Qt (>=4.7.0) and QtWebKit (at least version included in Qt 4.7) QupZilla requires Qt (>=4.7.0) and QtWebKit (at least version included in Qt 4.7)
Building plugins
----------------------------------------------------------------------------------
To build plugins, it is neccessary to build QupZilla as static library first.
You will do this by running this command
qmake CONFIG+=build_plugins
and then build the whole project.
Microsoft Windows Microsoft Windows
---------------------------------------------------------------------------------- ----------------------------------------------------------------------------------

View File

@ -1,3 +1,11 @@
#-------------------------------------------------
#
# QupZilla - QtWebKit browser
#
# Project created by QtCreator 2010-12-18T14:53:41
#
#-------------------------------------------------
lessThan(QT_VERSION, 4.7) { lessThan(QT_VERSION, 4.7) {
error("QupZilla requires at least Qt 4.7!") error("QupZilla requires at least Qt 4.7!")
} }
@ -5,7 +13,7 @@ lessThan(QT_VERSION, 4.7) {
TEMPLATE = subdirs TEMPLATE = subdirs
build_plugins { build_plugins {
SUBDIRS + = plugins SUBDIRS += plugins
} }
SUBDIRS += src SUBDIRS += src

View File

@ -1,21 +1,8 @@
#-------------------------------------------------
#
# Project created by QtCreator 2010-12-18T14:53:41
#
#-------------------------------------------------
QT += core gui webkit sql network script QT += core gui webkit sql network script
unix:QT += dbus unix:QT += dbus
TARGET = qupzilla TARGET = qupzilla
TEMPLATE = app TEMPLATE = app
#static_library {
# TEMPLATE = lib
# CONFIG -= shared
# CONFIG += static
#}
include(3rdparty/qtsingleapplication.pri) include(3rdparty/qtsingleapplication.pri)
include(src.pri) include(src.pri)
include(../install.pri) include(../install.pri)