aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/ffmpeg_legacy/ffmpeg_legacy.pro
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-02-10 17:12:37 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-02-10 17:12:37 +0000
commitecd8a389412e4d4a2e03150c220e1e7ead5ab2a4 (patch)
tree8b7d30463436db99dd3e789f91e9f7819d86fd1d /src/plugins/Input/ffmpeg_legacy/ffmpeg_legacy.pro
parent1551cfa8e50ed10bf1c6fb8465ac3b6387316737 (diff)
downloadqmmp-ecd8a389412e4d4a2e03150c220e1e7ead5ab2a4.tar.gz
qmmp-ecd8a389412e4d4a2e03150c220e1e7ead5ab2a4.tar.bz2
qmmp-ecd8a389412e4d4a2e03150c220e1e7ead5ab2a4.zip
added ffmpeg_legacy plugin
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3216 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/ffmpeg_legacy/ffmpeg_legacy.pro')
-rw-r--r--src/plugins/Input/ffmpeg_legacy/ffmpeg_legacy.pro59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/plugins/Input/ffmpeg_legacy/ffmpeg_legacy.pro b/src/plugins/Input/ffmpeg_legacy/ffmpeg_legacy.pro
new file mode 100644
index 000000000..54099d44a
--- /dev/null
+++ b/src/plugins/Input/ffmpeg_legacy/ffmpeg_legacy.pro
@@ -0,0 +1,59 @@
+include(../../plugins.pri)
+FORMS += settingsdialog.ui
+HEADERS += decoderffmpegfactory.h \
+ decoder_ffmpeg.h \
+ settingsdialog.h \
+ ffmpegmetadatamodel.h
+SOURCES += decoder_ffmpeg.cpp \
+ decoderffmpegfactory.cpp \
+ settingsdialog.cpp \
+ ffmpegmetadatamodel.cpp
+
+INCLUDEPATH += ../../../
+
+
+
+CONFIG += release \
+ warn_on \
+ plugin \
+ link_pkgconfig
+TEMPLATE = lib
+
+TARGET = $$PLUGINS_PREFIX/Input/ffmpeg_legacy
+
+unix {
+ isEmpty(LIB_DIR):LIB_DIR = /lib
+ target.path = $$LIB_DIR/qmmp/Input
+ INSTALLS += target
+ QMAKE_CLEAN = $$PLUGINS_PREFIX/Input/libffmpeg_legacy.so
+ LIBS += -lqmmp
+ QMAKE_LIBDIR += ../../../../lib
+ PKGCONFIG += libavcodec libavformat libavutil
+}
+
+
+win32 {
+ HEADERS += ../../../../src/qmmp/metadatamodel.h \
+ ../../../../src/qmmp/decoderfactory.h
+ QMAKE_LIBDIR += ../../../../bin
+ LIBS += -lqmmp0 -lavcodec.dll -lavformat.dll -lavutil.dll
+}
+
+DEFINES += __STDC_CONSTANT_MACROS
+
+TRANSLATIONS = translations/ffmpeg_plugin_legacy_ru.ts \
+ translations/ffmpeg_plugin_legacy_uk_UA.ts \
+ translations/ffmpeg_plugin_legacy_zh_CN.ts \
+ translations/ffmpeg_plugin_legacy_zh_TW.ts \
+ translations/ffmpeg_plugin_legacy_cs.ts \
+ translations/ffmpeg_plugin_legacy_pl.ts \
+ translations/ffmpeg_plugin_legacy_de.ts \
+ translations/ffmpeg_plugin_legacy_it.ts \
+ translations/ffmpeg_plugin_legacy_tr.ts \
+ translations/ffmpeg_plugin_legacy_lt.ts \
+ translations/ffmpeg_plugin_legacy_nl.ts \
+ translations/ffmpeg_plugin_legacy_ja.ts \
+ translations/ffmpeg_plugin_legacy_es.ts
+
+RESOURCES = translations/translations.qrc
+