blob: ae87bd44a011b1181d094a7541224185b6f98225 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# 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
PLUGIN_CLASS_NAME = QT7ServicePlugin
load(qt_plugin)
!simulator {
QT += opengl
}
#DEFINES += QT_DEBUG_QT7
LIBS += -framework AppKit -framework AudioUnit \
-framework AudioToolbox -framework CoreAudio \
-framework QuartzCore -framework QTKit
# QUICKTIME_C_API_AVAILABLE is true only on i386
# so make sure to link QuickTime
contains(QMAKE_HOST.arch, i386) {
LIBS += -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)
OTHER_FILES += \
qt7.json
|