blob: c26a8ffaf9972fcc0cb877fb11c948e74c70a603 (
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
|
include(../../plugins.pri)
FORMS += settingsdialog.ui
HEADERS += outputoss4factory.h \
outputoss4.h \
settingsdialog.h
SOURCES += outputoss4factory.cpp \
outputoss4.cpp \
settingsdialog.cpp
TARGET=$$PLUGINS_PREFIX/Output/oss4
QMAKE_CLEAN =$$PLUGINS_PREFIX/Output/liboss4.so
CONFIG += warn_on \
thread \
plugin
DEFINES += HAVE_SYS_SOUNDCARD_H
TEMPLATE = lib
LIBS += -lqmmp
RESOURCES = translations/translations.qrc
target.path = $$LIB_DIR/qmmp/Output
INSTALLS += target
|