mumble/plugins/plugins.pri
Mikkel Krautz 91e3dafa53 build: allow Mumble on Win32 to be built against a static Qt.
Also build-tested on OS X.

We currently disable the manual plugin when doing static builds
on Win32, because of manual.dll's Qt dependency.
2013-08-10 23:32:13 +02:00

24 lines
402 B
Plaintext

include(../compiler.pri)
TEMPLATE = lib
CONFIG += plugin debug_and_release warn_on
CONFIG -= qt
DIST *= mumble_plugin.h
CONFIG(static) {
CONFIG -= static
CONFIG += shared
CONFIG += qt_dynamic_lookup
}
CONFIG(debug, debug|release) {
CONFIG += console
DESTDIR = ../../debug/plugins
}
CONFIG(release, debug|release) {
DESTDIR = ../../release/plugins
}
include(../symbols.pri)