blob: 050970aeaba1995d7d48223a713a3b9b8d597d23 (
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
|
include(../../plugins.pri)
FORMS += settingsdialog.ui
HEADERS += outputossfactory.h \
outputoss.h \
settingsdialog.h
SOURCES += outputossfactory.cpp \
outputoss.cpp \
settingsdialog.cpp
TARGET=$$PLUGINS_PREFIX/Output/oss
QMAKE_CLEAN =$$PLUGINS_PREFIX/Output/liboss.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
|