blob: 59f5322ba9e5b2be5f08d69d2c32ecfcb28dcdcf (
plain) (
tree)
|
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/Input/mpeg
HEADERS += decodermpegfactory.h \
settingsdialog.h \
tagextractor.h \
mpegmetadatamodel.h \
replaygainreader.h
SOURCES += decodermpegfactory.cpp \
settingsdialog.cpp \
tagextractor.cpp \
mpegmetadatamodel.cpp \
replaygainreader.cpp
contains(CONFIG, WITH_MAD){
HEADERS += decoder_mad.h
SOURCES += decoder_mad.cpp
DEFINES += WITH_MAD
}
unix:contains(CONFIG, WITH_MPG123){
HEADERS += decoder_mpg123.h
SOURCES += decoder_mpg123.cpp
DEFINES += WITH_MPG123
}
FORMS += settingsdialog.ui
RESOURCES = translations/translations.qrc
unix {
target.path = $$LIB_DIR/qmmp/Input
INSTALLS += target
PKGCONFIG += taglib
contains(CONFIG, WITH_MAD):PKGCONFIG += mad
contains(CONFIG, WITH_MPG123):PKGCONFIG += libmpg123
}
win32 {
LIBS += -lmad -ltag.dll
}
|