1 | DESTDIR = $$QT_BUILD_TREE/plugins/phonon_backend
|
---|
2 | QT += phonon
|
---|
3 | win32:!wince*:contains(QT_CONFIG,opengl):LIBS += -lopengl32
|
---|
4 | win32:!wince*:LIBS += -lgdi32
|
---|
5 | win32-msvc2005:DEFINES += _CRT_SECURE_NO_WARNINGS
|
---|
6 | LIBS += -lstrmiids -ldmoguids -luuid -lmsdmo -lole32 -loleaut32
|
---|
7 | TARGET = phonon_ds9
|
---|
8 |
|
---|
9 | DEFINES += PHONON_MAKE_QT_ONLY_BACKEND
|
---|
10 | PHONON_DS9_DIR = $$QT_SOURCE_TREE/src/3rdparty/phonon/ds9
|
---|
11 |
|
---|
12 | # Input
|
---|
13 | HEADERS += \
|
---|
14 | $$PHONON_DS9_DIR/abstractvideorenderer.h \
|
---|
15 | $$PHONON_DS9_DIR/audiooutput.h \
|
---|
16 | $$PHONON_DS9_DIR/backend.h \
|
---|
17 | $$PHONON_DS9_DIR/backendnode.h \
|
---|
18 | $$PHONON_DS9_DIR/effect.h \
|
---|
19 | $$PHONON_DS9_DIR/fakesource.h \
|
---|
20 | $$PHONON_DS9_DIR/iodevicereader.h \
|
---|
21 | $$PHONON_DS9_DIR/mediagraph.h \
|
---|
22 | $$PHONON_DS9_DIR/mediaobject.h \
|
---|
23 | $$PHONON_DS9_DIR/videowidget.h \
|
---|
24 | $$PHONON_DS9_DIR/videorenderer_soft.h \
|
---|
25 | $$PHONON_DS9_DIR/volumeeffect.h \
|
---|
26 | $$PHONON_DS9_DIR/qbasefilter.h \
|
---|
27 | $$PHONON_DS9_DIR/qpin.h \
|
---|
28 | $$PHONON_DS9_DIR/qasyncreader.h \
|
---|
29 | $$PHONON_DS9_DIR/qaudiocdreader.h \
|
---|
30 | $$PHONON_DS9_DIR/qmeminputpin.h \
|
---|
31 | $$PHONON_DS9_DIR/compointer.h \
|
---|
32 | $$PHONON_DS9_DIR/phononds9_namespace.h
|
---|
33 |
|
---|
34 |
|
---|
35 | SOURCES += \
|
---|
36 | $$PHONON_DS9_DIR/abstractvideorenderer.cpp \
|
---|
37 | $$PHONON_DS9_DIR/audiooutput.cpp \
|
---|
38 | $$PHONON_DS9_DIR/backend.cpp \
|
---|
39 | $$PHONON_DS9_DIR/backendnode.cpp \
|
---|
40 | $$PHONON_DS9_DIR/effect.cpp \
|
---|
41 | $$PHONON_DS9_DIR/fakesource.cpp \
|
---|
42 | $$PHONON_DS9_DIR/iodevicereader.cpp \
|
---|
43 | $$PHONON_DS9_DIR/mediagraph.cpp \
|
---|
44 | $$PHONON_DS9_DIR/mediaobject.cpp \
|
---|
45 | $$PHONON_DS9_DIR/videowidget.cpp \
|
---|
46 | $$PHONON_DS9_DIR/videorenderer_soft.cpp \
|
---|
47 | $$PHONON_DS9_DIR/volumeeffect.cpp \
|
---|
48 | $$PHONON_DS9_DIR/qbasefilter.cpp \
|
---|
49 | $$PHONON_DS9_DIR/qpin.cpp \
|
---|
50 | $$PHONON_DS9_DIR/qasyncreader.cpp \
|
---|
51 | $$PHONON_DS9_DIR/qaudiocdreader.cpp \
|
---|
52 | $$PHONON_DS9_DIR/qmeminputpin.cpp
|
---|
53 |
|
---|
54 | #the EVR renderer (only available on desktop)
|
---|
55 | !wince*:SOURCES += $$PHONON_DS9_DIR/videorenderer_evr.cpp \
|
---|
56 | $$PHONON_DS9_DIR/videorenderer_vmr9.cpp
|
---|
57 | !wince*:HEADERS += $$PHONON_DS9_DIR/qevr9.h \
|
---|
58 | $$PHONON_DS9_DIR/videorenderer_evr.h \
|
---|
59 | $$PHONON_DS9_DIR/videorenderer_vmr9.h
|
---|
60 | wince*:SOURCES += $$PHONON_DS9_DIR/videorenderer_default.cpp
|
---|
61 | wince*:HEADERS += $$PHONON_DS9_DIR/videorenderer_default.h
|
---|
62 |
|
---|
63 | target.path = $$[QT_INSTALL_PLUGINS]/phonon_backend
|
---|
64 | INSTALLS += target
|
---|
65 |
|
---|
66 | include(../../qpluginbase.pri)
|
---|