blob: 939f5ad3fb798460c2a6e23b75aef404b8a45d43 (
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
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/Output/shout
HEADERS += outputshoutfactory.h \
shoutoutput.h \
shoutclient.h \
settingsdialog.h
SOURCES += outputshoutfactory.cpp \
shoutoutput.cpp \
shoutclient.cpp \
settingsdialog.cpp
FORMS += settingsdialog.ui
RESOURCES = translations/translations.qrc
unix {
target.path = $$LIB_DIR/qmmp/Output
INSTALLS += target
PKGCONFIG += ogg vorbis vorbisenc shout soxr
}
|