diff options
Diffstat (limited to 'src/plugins/Input/mpeg/mpeg.pro')
| -rw-r--r-- | src/plugins/Input/mpeg/mpeg.pro | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/plugins/Input/mpeg/mpeg.pro b/src/plugins/Input/mpeg/mpeg.pro new file mode 100644 index 000000000..e7d50b22e --- /dev/null +++ b/src/plugins/Input/mpeg/mpeg.pro @@ -0,0 +1,34 @@ +include(../../plugins.pri) + +TARGET = $$PLUGINS_PREFIX/Input/mpeg + +HEADERS += decodermpegfactory.h \ + decoder_mad.h \ + decoder_mpg123.h \ + settingsdialog.h \ + tagextractor.h \ + mpegmetadatamodel.h \ + replaygainreader.h + +SOURCES += decoder_mad.cpp \ + decoder_mpg123.cpp \ + decodermpegfactory.cpp \ + settingsdialog.cpp \ + tagextractor.cpp \ + mpegmetadatamodel.cpp \ + replaygainreader.cpp + +FORMS += settingsdialog.ui + +RESOURCES = translations/translations.qrc + +unix { + target.path = $$LIB_DIR/qmmp/Input + INSTALLS += target + LIBS += -lmad + PKGCONFIG += taglib mad libmpg123 +} + +win32 { + LIBS += -lmad -ltag.dll +} |
