blob: fc33d4358f492d15aca23f2566693feaf1d60053 (
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
|
# Qt kernel module
HEADERS += \
text/qfont.h \
text/qfontdatabase.h \
text/qfontengine_p.h \
text/qfontengineglyphcache_p.h \
text/qfontinfo.h \
text/qfontmetrics.h \
text/qfont_p.h \
text/qfontsubset_p.h \
text/qtextcontrol_p.h \
text/qtextcontrol_p_p.h \
text/qtextengine_p.h \
text/qtextlayout.h \
text/qtextformat.h \
text/qtextformat_p.h \
text/qtextobject.h \
text/qtextobject_p.h \
text/qtextoption.h \
text/qfragmentmap_p.h \
text/qtextdocument.h \
text/qtextdocument_p.h \
text/qtexthtmlparser_p.h \
text/qabstracttextdocumentlayout.h \
text/qtextdocumentlayout_p.h \
text/qtextcursor.h \
text/qtextcursor_p.h \
text/qtextdocumentfragment.h \
text/qtextdocumentfragment_p.h \
text/qtextimagehandler_p.h \
text/qtexttable.h \
text/qtextlist.h \
text/qsyntaxhighlighter.h \
text/qtextdocumentwriter.h \
text/qcssparser_p.h \
text/qtexttable_p.h \
text/qzipreader_p.h \
text/qzipwriter_p.h \
text/qtextodfwriter_p.h
SOURCES += \
text/qfont.cpp \
text/qfontengine.cpp \
text/qfontsubset.cpp \
text/qfontmetrics.cpp \
text/qfontdatabase.cpp \
text/qtextcontrol.cpp \
text/qtextengine.cpp \
text/qtextlayout.cpp \
text/qtextformat.cpp \
text/qtextobject.cpp \
text/qtextoption.cpp \
text/qfragmentmap.cpp \
text/qtextdocument.cpp \
text/qtextdocument_p.cpp \
text/qtexthtmlparser.cpp \
text/qabstracttextdocumentlayout.cpp \
text/qtextdocumentlayout.cpp \
text/qtextcursor.cpp \
text/qtextdocumentfragment.cpp \
text/qtextimagehandler.cpp \
text/qtexttable.cpp \
text/qtextlist.cpp \
text/qtextdocumentwriter.cpp \
text/qsyntaxhighlighter.cpp \
text/qcssparser.cpp \
text/qzip.cpp \
text/qtextodfwriter.cpp
win32 {
SOURCES += \
text/qfont_win.cpp \
text/qfontengine_win.cpp
HEADERS += text/qfontengine_win_p.h
}
unix:x11 {
HEADERS += \
text/qfontengine_x11_p.h \
text/qfontengine_ft_p.h
SOURCES += \
text/qfont_x11.cpp \
text/qfontengine_x11.cpp \
text/qfontengine_ft.cpp
}
!embedded:!x11:mac {
SOURCES += \
text/qfont_mac.cpp
OBJECTIVE_SOURCES += text/qfontengine_mac.mm
}
embedded {
SOURCES += \
text/qfont_qws.cpp \
text/qfontengine_qws.cpp \
text/qfontengine_ft.cpp \
text/qfontengine_qpf.cpp \
text/qabstractfontengine_qws.cpp
HEADERS += \
text/qfontengine_ft_p.h \
text/qfontengine_qpf_p.h \
text/qabstractfontengine_qws.h \
text/qabstractfontengine_p.h
DEFINES += QT_NO_FONTCONFIG
}
contains(QT_CONFIG, freetype) {
SOURCES += \
../3rdparty/freetype/builds/unix/ftsystem.c \
../3rdparty/freetype/src/base/ftbase.c \
../3rdparty/freetype/src/base/ftbbox.c \
../3rdparty/freetype/src/base/ftdebug.c \
../3rdparty/freetype/src/base/ftglyph.c \
../3rdparty/freetype/src/base/ftinit.c \
../3rdparty/freetype/src/base/ftmm.c \
../3rdparty/freetype/src/base/fttype1.c \
../3rdparty/freetype/src/base/ftbitmap.c\
../3rdparty/freetype/src/bdf/bdf.c \
../3rdparty/freetype/src/cache/ftcache.c \
../3rdparty/freetype/src/cff/cff.c \
../3rdparty/freetype/src/cid/type1cid.c \
../3rdparty/freetype/src/gzip/ftgzip.c \
../3rdparty/freetype/src/pcf/pcf.c \
../3rdparty/freetype/src/pfr/pfr.c \
../3rdparty/freetype/src/psaux/psaux.c \
../3rdparty/freetype/src/pshinter/pshinter.c \
../3rdparty/freetype/src/psnames/psmodule.c \
../3rdparty/freetype/src/raster/raster.c \
../3rdparty/freetype/src/sfnt/sfnt.c \
../3rdparty/freetype/src/smooth/smooth.c \
../3rdparty/freetype/src/truetype/truetype.c \
../3rdparty/freetype/src/type1/type1.c \
../3rdparty/freetype/src/type42/type42.c \
../3rdparty/freetype/src/winfonts/winfnt.c \
../3rdparty/freetype/src/lzw/ftlzw.c\
../3rdparty/freetype/src/otvalid/otvalid.c\
../3rdparty/freetype/src/otvalid/otvbase.c\
../3rdparty/freetype/src/otvalid/otvgdef.c\
../3rdparty/freetype/src/otvalid/otvjstf.c\
../3rdparty/freetype/src/otvalid/otvcommn.c\
../3rdparty/freetype/src/otvalid/otvgpos.c\
../3rdparty/freetype/src/otvalid/otvgsub.c\
../3rdparty/freetype/src/otvalid/otvmod.c\
../3rdparty/freetype/src/autofit/afangles.c\
../3rdparty/freetype/src/autofit/afglobal.c\
../3rdparty/freetype/src/autofit/aflatin.c\
../3rdparty/freetype/src/autofit/afmodule.c\
../3rdparty/freetype/src/autofit/afdummy.c\
../3rdparty/freetype/src/autofit/afhints.c\
../3rdparty/freetype/src/autofit/afloader.c\
../3rdparty/freetype/src/autofit/autofit.c
INCLUDEPATH += \
../3rdparty/freetype/src \
../3rdparty/freetype/include \
../3rdparty/freetype/builds/unix
DEFINES += FT2_BUILD_LIBRARY FT_CONFIG_OPTION_SYSTEM_ZLIB
embedded:CONFIG += opentype
} else:contains(QT_CONFIG, system-freetype) {
embedded:CONFIG += opentype
# pull in the proper freetype2 include directory
include($$QT_SOURCE_TREE/config.tests/unix/freetype/freetype.pri)
LIBS += -lfreetype
} else {
DEFINES *= QT_NO_FREETYPE
}
contains(QT_CONFIG, fontconfig) {
CONFIG += opentype
}
DEFINES += QT_NO_OPENTYPE
INCLUDEPATH += ../3rdparty/harfbuzz/src
|