• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1CONFIG -= qt
2
3TEMPLATE = lib
4CONFIG += staticlib
5
6CONFIG += c++11
7
8# The following define makes your compiler emit warnings if you use
9# any Qt feature that has been marked deprecated (the exact warnings
10# depend on your compiler). Please consult the documentation of the
11# deprecated API in order to know how to port your code away from it.
12DEFINES += QT_DEPRECATED_WARNINGS
13
14# You can also make your code fail to compile if it uses deprecated APIs.
15# In order to do so, uncomment the following line.
16# You can also select to disable deprecated APIs only up to a certain version of Qt.
17#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0
18
19DESTDIR = ../../libs
20
21SOURCES += \
22    ../../../../../../../../third_party/harfbuzz/src/hb-aat-layout.cc \
23    ../../../../../../../../third_party/harfbuzz/src/hb-aat-map.cc \
24    ../../../../../../../../third_party/harfbuzz/src/hb-blob.cc \
25    ../../../../../../../../third_party/harfbuzz/src/hb-buffer-serialize.cc \
26    ../../../../../../../../third_party/harfbuzz/src/hb-buffer.cc \
27    ../../../../../../../../third_party/harfbuzz/src/hb-common.cc \
28    ../../../../../../../../third_party/harfbuzz/src/hb-face.cc \
29    ../../../../../../../../third_party/harfbuzz/src/hb-fallback-shape.cc \
30    ../../../../../../../../third_party/harfbuzz/src/hb-font.cc \
31    ../../../../../../../../third_party/harfbuzz/src/hb-map.cc \
32    ../../../../../../../../third_party/harfbuzz/src/hb-number.cc \
33    ../../../../../../../../third_party/harfbuzz/src/hb-ot-cff1-table.cc \
34    ../../../../../../../../third_party/harfbuzz/src/hb-ot-cff2-table.cc \
35    ../../../../../../../../third_party/harfbuzz/src/hb-ot-face.cc \
36    ../../../../../../../../third_party/harfbuzz/src/hb-ot-font.cc \
37    ../../../../../../../../third_party/harfbuzz/src/hb-ot-layout.cc \
38    ../../../../../../../../third_party/harfbuzz/src/hb-ot-map.cc \
39    ../../../../../../../../third_party/harfbuzz/src/hb-ot-math.cc \
40    ../../../../../../../../third_party/harfbuzz/src/hb-ot-meta.cc \
41    ../../../../../../../../third_party/harfbuzz/src/hb-ot-metrics.cc \
42    ../../../../../../../../third_party/harfbuzz/src/hb-ot-name.cc \
43    ../../../../../../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic.cc \
44    ../../../../../../../../third_party/harfbuzz/src/hb-ot-shape-complex-default.cc \
45    ../../../../../../../../third_party/harfbuzz/src/hb-ot-shape-complex-hangul.cc \
46    ../../../../../../../../third_party/harfbuzz/src/hb-ot-shape-complex-hebrew.cc \
47    ../../../../../../../../third_party/harfbuzz/src/hb-ot-shape-complex-indic-table.cc \
48    ../../../../../../../../third_party/harfbuzz/src/hb-ot-shape-complex-indic.cc \
49    ../../../../../../../../third_party/harfbuzz/src/hb-ot-shape-complex-khmer.cc \
50    ../../../../../../../../third_party/harfbuzz/src/hb-ot-shape-complex-myanmar.cc \
51    ../../../../../../../../third_party/harfbuzz/src/hb-ot-shape-complex-syllabic.cc \
52    ../../../../../../../../third_party/harfbuzz/src/hb-ot-shape-complex-thai.cc \
53    ../../../../../../../../third_party/harfbuzz/src/hb-ot-shape-complex-use.cc \
54    ../../../../../../../../third_party/harfbuzz/src/hb-ot-shape-complex-vowel-constraints.cc \
55    ../../../../../../../../third_party/harfbuzz/src/hb-ot-shape-fallback.cc \
56    ../../../../../../../../third_party/harfbuzz/src/hb-ot-shape-normalize.cc \
57    ../../../../../../../../third_party/harfbuzz/src/hb-ot-shape.cc \
58    ../../../../../../../../third_party/harfbuzz/src/hb-ot-tag.cc \
59    ../../../../../../../../third_party/harfbuzz/src/hb-ot-var.cc \
60    ../../../../../../../../third_party/harfbuzz/src/hb-set.cc \
61    ../../../../../../../../third_party/harfbuzz/src/hb-shape-plan.cc \
62    ../../../../../../../../third_party/harfbuzz/src/hb-shape.cc \
63    ../../../../../../../../third_party/harfbuzz/src/hb-shaper.cc \
64    ../../../../../../../../third_party/harfbuzz/src/hb-static.cc \
65    ../../../../../../../../third_party/harfbuzz/src/hb-subset-cff2.cc \
66    ../../../../../../../../third_party/harfbuzz/src/hb-subset-cff-common.cc \
67    ../../../../../../../../third_party/harfbuzz/src/hb-ucd.cc \
68    ../../../../../../../../third_party/harfbuzz/src/hb-unicode.cc
69
70INCLUDEPATH += \
71    ../../../../../../../../third_party/harfbuzz/src
72