blob: 2da95c88e2a458fad69d4abb836fc09858eecc32 (
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
37
38
|
include(../../plugins.pri)
HEADERS += decoderphononfactory.h \
decoder_phonon.h
SOURCES += decoder_phonon.cpp \
decoderphononfactory.cpp
TARGET =$$PLUGINS_PREFIX/Input/phonon
QMAKE_CLEAN =$$PLUGINS_PREFIX/Input/libphonon.so
INCLUDEPATH += ../../../
CONFIG += release \
warn_on \
plugin
TEMPLATE = lib
QT += phonon
QMAKE_LIBDIR += ../../../../lib
LIBS += -lqmmp -L/usr/lib
#TRANSLATIONS = translations/phonon_plugin_ru.ts
# translations/phonon_plugin_uk_UA.ts
# translations/phonon_plugin_zh_CN.ts
# translations/phonon_plugin_zh_TW.ts
# translations/phonon_plugin_cs.ts
# translations/phonon_plugin_de.ts
#RESOURCES = translations/translations.qrc
isEmpty(LIB_DIR){
LIB_DIR = /lib
}
target.path = $$LIB_DIR/qmmp/Input
INSTALLS += target
|