blob: e5343c6324e2ed6f7b7e4c766a8abe149e35fd39 (
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
INCLUDEPATH += $$PWD
HEADERS += \
$$PWD/qmlgraphicsitemsmodule_p.h \
$$PWD/qmlgraphicsanchors_p.h \
$$PWD/qmlgraphicsanchors_p_p.h \
$$PWD/qmlgraphicsevents_p_p.h \
$$PWD/qmlgraphicseffects_p.h \
$$PWD/qmlgraphicsflickable_p.h \
$$PWD/qmlgraphicsflickable_p_p.h \
$$PWD/qmlgraphicsflipable_p.h \
$$PWD/qmlgraphicsgridview_p.h \
$$PWD/qmlgraphicsimage_p.h \
$$PWD/qmlgraphicsimagebase_p.h \
$$PWD/qmlgraphicsborderimage_p.h \
$$PWD/qmlgraphicspainteditem_p.h \
$$PWD/qmlgraphicspainteditem_p_p.h \
$$PWD/qmlgraphicsimage_p_p.h \
$$PWD/qmlgraphicsborderimage_p_p.h \
$$PWD/qmlgraphicsimagebase_p_p.h \
$$PWD/qmlgraphicsanimatedimage_p.h \
$$PWD/qmlgraphicsanimatedimage_p_p.h \
$$PWD/qmlgraphicsitem.h \
$$PWD/qmlgraphicsitem_p.h \
$$PWD/qmlgraphicsfocuspanel_p.h \
$$PWD/qmlgraphicsfocusscope_p.h \
$$PWD/qmlgraphicspositioners_p.h \
$$PWD/qmlgraphicspositioners_p_p.h \
$$PWD/qmlgraphicsloader_p.h \
$$PWD/qmlgraphicsloader_p_p.h \
$$PWD/qmlgraphicsmousearea_p.h \
$$PWD/qmlgraphicsmousearea_p_p.h \
$$PWD/qmlgraphicspath_p.h \
$$PWD/qmlgraphicspath_p_p.h \
$$PWD/qmlgraphicspathview_p.h \
$$PWD/qmlgraphicspathview_p_p.h \
$$PWD/qmlgraphicsrectangle_p.h \
$$PWD/qmlgraphicsrectangle_p_p.h \
$$PWD/qmlgraphicsrepeater_p.h \
$$PWD/qmlgraphicsrepeater_p_p.h \
$$PWD/qmlgraphicsscalegrid_p_p.h \
$$PWD/qmlgraphicstextinput_p.h \
$$PWD/qmlgraphicstextinput_p_p.h \
$$PWD/qmlgraphicstextedit_p.h \
$$PWD/qmlgraphicstextedit_p_p.h \
$$PWD/qmlgraphicstext_p.h \
$$PWD/qmlgraphicstext_p_p.h \
$$PWD/qmlgraphicsvisualitemmodel_p.h \
$$PWD/qmlgraphicslistview_p.h \
$$PWD/qmlgraphicsgraphicsobjectcontainer_p.h \
$$PWD/qmlgraphicsparticles_p.h \
$$PWD/qmlgraphicslayoutitem_p.h \
$$PWD/qmlgraphicsitemchangelistener_p.h \
$$PWD/qmlgraphicseffects.cpp
SOURCES += \
$$PWD/qmlgraphicsitemsmodule.cpp \
$$PWD/qmlgraphicsanchors.cpp \
$$PWD/qmlgraphicsevents.cpp \
$$PWD/qmlgraphicsflickable.cpp \
$$PWD/qmlgraphicsflipable.cpp \
$$PWD/qmlgraphicsgridview.cpp \
$$PWD/qmlgraphicsimage.cpp \
$$PWD/qmlgraphicsborderimage.cpp \
$$PWD/qmlgraphicsimagebase.cpp \
$$PWD/qmlgraphicsanimatedimage.cpp \
$$PWD/qmlgraphicspainteditem.cpp \
$$PWD/qmlgraphicsitem.cpp \
$$PWD/qmlgraphicsfocuspanel.cpp \
$$PWD/qmlgraphicsfocusscope.cpp \
$$PWD/qmlgraphicspositioners.cpp \
$$PWD/qmlgraphicsloader.cpp \
$$PWD/qmlgraphicsmousearea.cpp \
$$PWD/qmlgraphicspath.cpp \
$$PWD/qmlgraphicspathview.cpp \
$$PWD/qmlgraphicsrectangle.cpp \
$$PWD/qmlgraphicsrepeater.cpp \
$$PWD/qmlgraphicsscalegrid.cpp \
$$PWD/qmlgraphicstextinput.cpp \
$$PWD/qmlgraphicstext.cpp \
$$PWD/qmlgraphicstextedit.cpp \
$$PWD/qmlgraphicsvisualitemmodel.cpp \
$$PWD/qmlgraphicslistview.cpp \
$$PWD/qmlgraphicsgraphicsobjectcontainer.cpp \
$$PWD/qmlgraphicsparticles.cpp \
$$PWD/qmlgraphicslayoutitem.cpp \
contains(QT_CONFIG, webkit) {
QT+=webkit
SOURCES += $$PWD/qmlgraphicswebview.cpp
HEADERS += $$PWD/qmlgraphicswebview_p.h
HEADERS += $$PWD/qmlgraphicswebview_p_p.h
}
|