diff options
author | Justin McPherson <justin.mcpherson@nokia.com> | 2010-01-15 04:12:40 (GMT) |
---|---|---|
committer | Justin McPherson <justin.mcpherson@nokia.com> | 2010-01-15 05:49:21 (GMT) |
commit | f53271c1cac46ad63612e951e34ffae34328fec6 (patch) | |
tree | 23e55263805e54f61d82b1fa35acd7a6f352d9c8 /src/plugins/mediaservices/qt7/qt7.pro | |
parent | d2fa5b80d4f40ac67a7a74552390332551563466 (diff) | |
download | Qt-f53271c1cac46ad63612e951e34ffae34328fec6.zip Qt-f53271c1cac46ad63612e951e34ffae34328fec6.tar.gz Qt-f53271c1cac46ad63612e951e34ffae34328fec6.tar.bz2 |
Move QtMobility multimedia framework into Qt.
Diffstat (limited to 'src/plugins/mediaservices/qt7/qt7.pro')
-rw-r--r-- | src/plugins/mediaservices/qt7/qt7.pro | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/plugins/mediaservices/qt7/qt7.pro b/src/plugins/mediaservices/qt7/qt7.pro new file mode 100644 index 0000000..938bc97 --- /dev/null +++ b/src/plugins/mediaservices/qt7/qt7.pro @@ -0,0 +1,52 @@ +TARGET = qt7 +include(../../qpluginbase.pri) + +QT += opengl multimedia + +LIBS += -framework AppKit -framework AudioUnit \ + -framework AudioToolbox -framework CoreAudio \ + -framework QuartzCore -framework QTKit + +# The Quicktime framework is only awailable for 32-bit builds, so we +# need to check for this before linking against it. +# QMAKE_MAC_XARCH is not awailable on Tiger, but at the same time, +# we never build for 64-bit architechtures on Tiger either: +contains(QMAKE_MAC_XARCH, no) { + LIBS += -framework QuickTime +} else { + LIBS += -Xarch_i386 -framework QuickTime -Xarch_ppc -framework QuickTime +} + +HEADERS += \ + qt7backend.h \ + qt7playercontrol.h \ + qt7videooutputcontrol.h \ + qt7movieviewoutput.h \ + qt7movievideowidget.h \ + qt7movieviewrenderer.h \ + qt7playersession.h \ + qt7playerservice.h \ + qt7serviceplugin.h \ + qt7movierenderer.h \ + qt7playermetadata.h \ + qcvdisplaylink.h + +OBJECTIVE_SOURCES += \ + qt7backend.mm \ + qt7playersession.mm \ + qt7serviceplugin.mm \ + qt7movieviewoutput.mm \ + qt7movievideowidget.mm \ + qt7movieviewrenderer.mm \ + qt7playermetadata.mm \ + qt7movierenderer.mm \ + qt7playercontrol.mm \ + qt7videooutputcontrol.mm \ + qt7playerservice.mm \ + qcvdisplaylink.mm + + +QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/mediaservices +target.path = $$[QT_INSTALL_PLUGINS]/plugins/mediaservices +INSTALLS += target + |