blob: aff22e5255ceec0c84ab0807692ef44637017faa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
include(../../plugins.pri)
HEADERS += outputpulseaudiofactory.h \
outputpulseaudio.h
SOURCES += outputpulseaudiofactory.cpp \
outputpulseaudio.cpp
TARGET=$$PLUGINS_PREFIX/Output/pulseaudio
QMAKE_CLEAN =$$PLUGINS_PREFIX/Output/libpulseaudio.so
INCLUDEPATH += ../../../
QMAKE_LIBDIR += ../../../../lib
CONFIG += release \
warn_on \
thread \
plugin \
link_pkgconfig
TEMPLATE = lib
LIBS += -lqmmp
PKGCONFIG += libpulse-simple
TRANSLATIONS = translations/pulseaudio_plugin_cs.ts \
translations/pulseaudio_plugin_de.ts
RESOURCES = translations/translations.qrc
isEmpty (LIB_DIR){
LIB_DIR = /lib
}
target.path = $$LIB_DIR/qmmp/Output
INSTALLS += target
|