source: trunk/src/plugins/phonon/ds9/ds9.pro@ 846

Last change on this file since 846 was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 2.5 KB
Line 
1DESTDIR = $$QT_BUILD_TREE/plugins/phonon_backend
2QT += phonon
3win32:!wince*:contains(QT_CONFIG,opengl):LIBS += -lopengl32
4win32:!wince*:LIBS += -lgdi32
5win32-msvc2005:DEFINES += _CRT_SECURE_NO_WARNINGS
6LIBS += -lstrmiids -ldmoguids -luuid -lmsdmo -lole32 -loleaut32
7TARGET = phonon_ds9
8
9DEFINES += PHONON_MAKE_QT_ONLY_BACKEND
10PHONON_DS9_DIR = $$QT_SOURCE_TREE/src/3rdparty/phonon/ds9
11
12# Input
13HEADERS += \
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
35SOURCES += \
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
60wince*:SOURCES += $$PHONON_DS9_DIR/videorenderer_default.cpp
61wince*:HEADERS += $$PHONON_DS9_DIR/videorenderer_default.h
62
63target.path = $$[QT_INSTALL_PLUGINS]/phonon_backend
64INSTALLS += target
65
66include(../../qpluginbase.pri)
Note: See TracBrowser for help on using the repository browser.