diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-12-29 19:02:04 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-12-29 19:02:04 +0000 |
| commit | 25c7a118f07d2dea9a8e6f6619ab51447f953068 (patch) | |
| tree | 7f0a6d836df9ada52a62253c83f2ee953749b7e5 /src/plugins/Input/mpeg/mpeg.pro | |
| parent | ccf395b7843bc027a61b14e83505840650039406 (diff) | |
| download | qmmp-25c7a118f07d2dea9a8e6f6619ab51447f953068.tar.gz qmmp-25c7a118f07d2dea9a8e6f6619ab51447f953068.tar.bz2 qmmp-25c7a118f07d2dea9a8e6f6619ab51447f953068.zip | |
added mpeg plugin
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7807 90c681e8-e032-0410-971d-27865f9a5e38
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 +} |
