diff options
author | Kurt Korbatits <kurt.korbatits@nokia.com> | 2009-06-29 04:21:44 (GMT) |
---|---|---|
committer | Kurt Korbatits <kurt.korbatits@nokia.com> | 2009-06-29 04:21:44 (GMT) |
commit | 157b2ee3f49fd6085e61965b1f1a239c569a4fea (patch) | |
tree | df0c2f4252329ef938b8b108b2fff556f6aaa060 /tests/auto/mediaobject/dummy/dummy.pro | |
parent | 06eec9e1e1665f2551344d8f6938e9e2eb95f34f (diff) | |
download | Qt-157b2ee3f49fd6085e61965b1f1a239c569a4fea.zip Qt-157b2ee3f49fd6085e61965b1f1a239c569a4fea.tar.gz Qt-157b2ee3f49fd6085e61965b1f1a239c569a4fea.tar.bz2 |
Added dummy backend for phonon for testing.
Diffstat (limited to 'tests/auto/mediaobject/dummy/dummy.pro')
-rw-r--r-- | tests/auto/mediaobject/dummy/dummy.pro | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/auto/mediaobject/dummy/dummy.pro b/tests/auto/mediaobject/dummy/dummy.pro new file mode 100644 index 0000000..b4f6109 --- /dev/null +++ b/tests/auto/mediaobject/dummy/dummy.pro @@ -0,0 +1,23 @@ +TEMPLATE = lib + +isEmpty(QT_MAJOR_VERSION) { + VERSION=4.5.2 +} else { + VERSION=$${QT_MAJOR_VERSION}.$${QT_MINOR_VERSION}.$${QT_PATCH_VERSION} +} +CONFIG += qt plugin + +TARGET = phonon_dummy +DESTDIR = $$QT_BUILD_TREE/plugins/phonon_backend +DEPENDPATH += . +INCLUDEPATH += . + +QT += phonon + + +# Input +HEADERS += backend.h audiooutput.h mediaobject.h videowidget.h +SOURCES += backend.cpp audiooutput.cpp mediaobject.cpp videowidget.cpp + +target.path = $$[QT_INSTALL_PLUGINS]/phonon_backend +INSTALLS += target |