forked from reMarkable/pdfium-qmake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfxge.pri
61 lines (59 loc) · 3.33 KB
/
fxge.pri
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
SOURCE_DIR = $$PWD/pdfium
HEADERS += \
$$SOURCE_DIR/core/include/fxge/fpf.h \
$$SOURCE_DIR/core/include/fxge/fx_dib.h \
$$SOURCE_DIR/core/include/fxge/fx_font.h \
$$SOURCE_DIR/core/include/fxge/fx_freetype.h \
$$SOURCE_DIR/core/include/fxge/fx_ge.h \
$$SOURCE_DIR/core/include/fxge/fx_ge_apple.h \
$$SOURCE_DIR/core/include/fxge/fx_ge_win32.h \
$$SOURCE_DIR/core/src/fxge/agg/include/fx_agg_driver.h \
$$SOURCE_DIR/core/src/fxge/android/fpf_skiafont.h \
$$SOURCE_DIR/core/src/fxge/android/fpf_skiafontmgr.h \
$$SOURCE_DIR/core/src/fxge/android/fpf_skiamodule.h \
$$SOURCE_DIR/core/src/fxge/android/fx_android_font.h \
$$SOURCE_DIR/core/src/fxge/android/fx_fpf.h \
$$SOURCE_DIR/core/src/fxge/apple/apple_int.h \
$$SOURCE_DIR/core/src/fxge/dib/dib_int.h \
$$SOURCE_DIR/core/src/fxge/fontdata/chromefontdata/chromefontdata.h \
$$SOURCE_DIR/core/src/fxge/ge/text_int.h \
SOURCES += \
$$SOURCE_DIR/core/src/fxge/agg/src/fx_agg_driver.cpp \
$$SOURCE_DIR/core/src/fxge/android/fpf_skiafont.cpp \
$$SOURCE_DIR/core/src/fxge/android/fpf_skiafontmgr.cpp \
$$SOURCE_DIR/core/src/fxge/android/fpf_skiamodule.cpp \
$$SOURCE_DIR/core/src/fxge/android/fx_android_font.cpp \
$$SOURCE_DIR/core/src/fxge/android/fx_android_imp.cpp \
$$SOURCE_DIR/core/src/fxge/apple/fx_apple_platform.cpp \
$$SOURCE_DIR/core/src/fxge/apple/fx_mac_imp.cpp \
$$SOURCE_DIR/core/src/fxge/apple/fx_quartz_device.cpp \
$$SOURCE_DIR/core/src/fxge/dib/fx_dib_composite.cpp \
$$SOURCE_DIR/core/src/fxge/dib/fx_dib_convert.cpp \
$$SOURCE_DIR/core/src/fxge/dib/fx_dib_engine.cpp \
$$SOURCE_DIR/core/src/fxge/dib/fx_dib_main.cpp \
$$SOURCE_DIR/core/src/fxge/dib/fx_dib_transform.cpp \
$$SOURCE_DIR/core/src/fxge/fontdata/chromefontdata/FoxitDingbats.c \
$$SOURCE_DIR/core/src/fxge/fontdata/chromefontdata/FoxitFixed.c \
$$SOURCE_DIR/core/src/fxge/fontdata/chromefontdata/FoxitFixedBold.c \
$$SOURCE_DIR/core/src/fxge/fontdata/chromefontdata/FoxitFixedBoldItalic.c \
$$SOURCE_DIR/core/src/fxge/fontdata/chromefontdata/FoxitFixedItalic.c \
$$SOURCE_DIR/core/src/fxge/fontdata/chromefontdata/FoxitSans.c \
$$SOURCE_DIR/core/src/fxge/fontdata/chromefontdata/FoxitSansBold.c \
$$SOURCE_DIR/core/src/fxge/fontdata/chromefontdata/FoxitSansBoldItalic.c \
$$SOURCE_DIR/core/src/fxge/fontdata/chromefontdata/FoxitSansItalic.c \
$$SOURCE_DIR/core/src/fxge/fontdata/chromefontdata/FoxitSansMM.c \
$$SOURCE_DIR/core/src/fxge/fontdata/chromefontdata/FoxitSerif.c \
$$SOURCE_DIR/core/src/fxge/fontdata/chromefontdata/FoxitSerifBold.c \
$$SOURCE_DIR/core/src/fxge/fontdata/chromefontdata/FoxitSerifBoldItalic.c \
$$SOURCE_DIR/core/src/fxge/fontdata/chromefontdata/FoxitSerifItalic.c \
$$SOURCE_DIR/core/src/fxge/fontdata/chromefontdata/FoxitSerifMM.c \
$$SOURCE_DIR/core/src/fxge/fontdata/chromefontdata/FoxitSymbol.c \
$$SOURCE_DIR/core/src/fxge/freetype/fx_freetype.c \
$$SOURCE_DIR/core/src/fxge/ge/fx_ge.cpp \
$$SOURCE_DIR/core/src/fxge/ge/fx_ge_device.cpp \
$$SOURCE_DIR/core/src/fxge/ge/fx_ge_font.cpp \
$$SOURCE_DIR/core/src/fxge/ge/fx_ge_fontmap.cpp \
$$SOURCE_DIR/core/src/fxge/ge/fx_ge_linux.cpp \
$$SOURCE_DIR/core/src/fxge/ge/fx_ge_path.cpp \
$$SOURCE_DIR/core/src/fxge/ge/fx_ge_ps.cpp \
$$SOURCE_DIR/core/src/fxge/ge/fx_ge_text.cpp \