blob: 52365581078634f815c3e1b4a144037b668bf412 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
include(../../plugins.pri)
FORMS += detailsdialog.ui \
settingsdialog.ui
HEADERS += decodermadfactory.h \
decoder_mad.h \
detailsdialog.h \
settingsdialog.h \
tagextractor.h
SOURCES += decoder_mad.cpp \
decodermadfactory.cpp \
detailsdialog.cpp \
settingsdialog.cpp \
tagextractor.cpp
TARGET =$$PLUGINS_PREFIX/Input/mad
unix:QMAKE_CLEAN =$$PLUGINS_PREFIX/Input/libmad.so
INCLUDEPATH += ../../../
win32:INCLUDEPATH += D:\MINGW\include\taglib
CONFIG += release \
warn_on \
plugin \
link_pkgconfig
TEMPLATE = lib
unix:QMAKE_LIBDIR += ../../../../lib
win32:QMAKE_LIBDIR += ../../../../bin
unix:LIBS += -lqmmp -lmad
unix:PKGCONFIG += taglib mad
win32:LIBS += -lqmmp0 -lmad -ltag.dll -ltag_c.dll
TRANSLATIONS = translations/mad_plugin_ru.ts \
translations/mad_plugin_uk_UA.ts \
translations/mad_plugin_zh_CN.ts \
translations/mad_plugin_zh_TW.ts \
translations/mad_plugin_cs.ts \
translations/mad_plugin_pl.ts \
translations/mad_plugin_de.ts \
translations/mad_plugin_it.ts \
translations/mad_plugin_tr.ts \
translations/mad_plugin_tr.ts
RESOURCES = translations/translations.qrc
unix{
isEmpty(LIB_DIR){
LIB_DIR = /lib
}
target.path = $$LIB_DIR/qmmp/Input
INSTALLS += target
}
|