- load(qt_module) => load(qt_build_config) - remove: - CONFIG+=module (obsolete) - code relating to module version headers (automated now) - %mastercontent assignment (automated now) - QT_BUILD_*_LIB defines (automated now) - pointless QPRO_PWD assignments - pointless DEFINES+=QT_MAKEDLL - pointless and commented out include and depend paths - qmake -project boilerplate Change-Id: I8f4586403848fe8f2dff4e889b389956ffcdea59 Reviewed-by: Jonas Rabbe <jonas.rabbe@gmail.com> Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
78 lines
1.8 KiB
Prolog
78 lines
1.8 KiB
Prolog
load(qt_build_config)
|
|
|
|
# Avoid clash with a variable named `slots' in a Quartz header
|
|
CONFIG += no_keywords
|
|
|
|
TARGET = qqt7engine
|
|
QT += multimedia-private network
|
|
!isEmpty(QT.widgets.name) {
|
|
QT += multimediawidgets-private widgets
|
|
}
|
|
|
|
PLUGIN_TYPE = mediaservice
|
|
|
|
load(qt_plugin)
|
|
DESTDIR = $$QT.multimedia.plugins/$${PLUGIN_TYPE}
|
|
|
|
!simulator {
|
|
QT += opengl
|
|
}
|
|
|
|
#DEFINES += QT_DEBUG_QT7
|
|
|
|
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 \
|
|
qt7videooutput.h \
|
|
qt7serviceplugin.h
|
|
|
|
OBJECTIVE_SOURCES += \
|
|
qt7backend.mm \
|
|
qt7serviceplugin.mm
|
|
|
|
!simulator {
|
|
HEADERS += \
|
|
qt7movieviewoutput.h \
|
|
qt7movierenderer.h \
|
|
qt7ciimagevideobuffer.h \
|
|
qcvdisplaylink.h
|
|
|
|
OBJECTIVE_SOURCES += \
|
|
qt7movieviewoutput.mm \
|
|
qt7movierenderer.mm \
|
|
qt7videooutput.mm \
|
|
qt7ciimagevideobuffer.mm \
|
|
qcvdisplaylink.mm
|
|
|
|
!isEmpty(QT.widgets.name) {
|
|
HEADERS += \
|
|
qt7movieviewrenderer.h \
|
|
qt7movievideowidget.h
|
|
|
|
OBJECTIVE_SOURCES += \
|
|
qt7movieviewrenderer.mm \
|
|
qt7movievideowidget.mm
|
|
}
|
|
}
|
|
|
|
include(mediaplayer/mediaplayer.pri)
|
|
|
|
target.path += $$[QT_INSTALL_PLUGINS]/$${PLUGIN_TYPE}
|
|
INSTALLS += target
|
|
|
|
OTHER_FILES += \
|
|
qt7.json
|