1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 18:56:34 +01:00

Edits in building, should fix building on Mac.

This commit is contained in:
nowrep 2012-03-20 17:05:57 +01:00
parent 3daffa0300
commit 6833fb9202
3 changed files with 6 additions and 3 deletions

View File

@ -10,5 +10,8 @@ lessThan(QT_VERSION, 4.7) {
error("QupZilla requires at least Qt 4.7!") error("QupZilla requires at least Qt 4.7!")
} }
# Create plugins directory first on Mac / Linux
mac|unix: system(mkdir bin/plugins)
TEMPLATE = subdirs TEMPLATE = subdirs
SUBDIRS = src SUBDIRS = src

View File

@ -3,8 +3,8 @@ unix: QT += dbus
TARGET = qupzilla TARGET = qupzilla
TEMPLATE = app TEMPLATE = app
!unix: LIBS += -L../../bin -lqupzilla !unix|mac: LIBS += -L../../bin -lqupzilla
unix: LIBS += ../../bin/libqupzilla.so !mac:unix: LIBS += ../../bin/libqupzilla.so
include(../defines.pri) include(../defines.pri)
include(../install.pri) include(../install.pri)