blob: 280dd1246d9665cf700d381263d59facaf1b58b7 (
plain) (
tree)
|
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/Input/ffmpeg_legacy
HEADERS += decoderffmpegfactory.h \
decoder_ffmpeg.h \
settingsdialog.h \
ffmpegmetadatamodel.h
SOURCES += decoder_ffmpeg.cpp \
decoderffmpegfactory.cpp \
settingsdialog.cpp \
ffmpegmetadatamodel.cpp
FORMS += settingsdialog.ui
RESOURCES = translations/translations.qrc
DEFINES += __STDC_CONSTANT_MACROS
unix {
target.path = $$LIB_DIR/qmmp/Input
INSTALLS += target
PKGCONFIG += libavcodec libavformat libavutil
}
win32 {
LIBS +=-lavcodec.dll -lavformat.dll -lavutil.dll
}
|