qmake now add CONFIG+=depend_includepath by default, making manual DEPENDPATH setup unnecessary. Change-Id: Iffd78b4c7cf8d048a822b75c481ac380b3d8d0f4 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
33 lines
575 B
Prolog
33 lines
575 B
Prolog
TARGET = wmfengine
|
|
QT += multimedia-private network
|
|
!isEmpty(QT.widgets.name) {
|
|
QT += multimediawidgets-private
|
|
DEFINES += HAVE_WIDGETS
|
|
}
|
|
|
|
PLUGIN_TYPE=mediaservice
|
|
PLUGIN_CLASS_NAME = WMFServicePlugin
|
|
load(qt_plugin)
|
|
|
|
INCLUDEPATH += .
|
|
|
|
HEADERS += \
|
|
wmfserviceplugin.h \
|
|
mfstream.h \
|
|
sourceresolver.h \
|
|
samplegrabber.h \
|
|
mftvideo.h
|
|
|
|
SOURCES += \
|
|
wmfserviceplugin.cpp \
|
|
mfstream.cpp \
|
|
sourceresolver.cpp \
|
|
samplegrabber.cpp \
|
|
mftvideo.cpp
|
|
|
|
include (player/player.pri)
|
|
include (decoder/decoder.pri)
|
|
|
|
OTHER_FILES += \
|
|
wmf.json
|