forked from reMarkable/pdfium-qmake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfxcrt.pri
43 lines (41 loc) · 1.93 KB
/
fxcrt.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
SOURCE_DIR = $$PWD/pdfium
HEADERS += \
$$SOURCE_DIR/core/include/fxcrt/fx_basic.h \
$$SOURCE_DIR/core/include/fxcrt/fx_bidi.h \
$$SOURCE_DIR/core/include/fxcrt/fx_coordinates.h \
$$SOURCE_DIR/core/include/fxcrt/fx_ext.h \
$$SOURCE_DIR/core/include/fxcrt/fx_memory.h \
$$SOURCE_DIR/core/include/fxcrt/fx_safe_types.h \
$$SOURCE_DIR/core/include/fxcrt/fx_stream.h \
$$SOURCE_DIR/core/include/fxcrt/fx_string.h \
$$SOURCE_DIR/core/include/fxcrt/fx_system.h \
$$SOURCE_DIR/core/include/fxcrt/fx_ucd.h \
$$SOURCE_DIR/core/include/fxcrt/fx_xml.h \
$$SOURCE_DIR/core/src/fxcrt/extension.h \
$$SOURCE_DIR/core/src/fxcrt/fxcrt_platforms.h \
$$SOURCE_DIR/core/src/fxcrt/fxcrt_posix.h \
$$SOURCE_DIR/core/src/fxcrt/fxcrt_windows.h \
$$SOURCE_DIR/core/src/fxcrt/plex.h \
$$SOURCE_DIR/core/src/fxcrt/xml_int.h \
SOURCES += \
$$SOURCE_DIR/core/src/fxcrt/fxcrt_platforms.cpp \
$$SOURCE_DIR/core/src/fxcrt/fxcrt_posix.cpp \
$$SOURCE_DIR/core/src/fxcrt/fxcrt_windows.cpp \
$$SOURCE_DIR/core/src/fxcrt/fx_basic_array.cpp \
$$SOURCE_DIR/core/src/fxcrt/fx_basic_bstring.cpp \
$$SOURCE_DIR/core/src/fxcrt/fx_basic_buffer.cpp \
$$SOURCE_DIR/core/src/fxcrt/fx_basic_coords.cpp \
$$SOURCE_DIR/core/src/fxcrt/fx_basic_gcc.cpp \
$$SOURCE_DIR/core/src/fxcrt/fx_basic_list.cpp \
$$SOURCE_DIR/core/src/fxcrt/fx_basic_maps.cpp \
$$SOURCE_DIR/core/src/fxcrt/fx_basic_memmgr.cpp \
$$SOURCE_DIR/core/src/fxcrt/fx_basic_plex.cpp \
$$SOURCE_DIR/core/src/fxcrt/fx_basic_utf.cpp \
$$SOURCE_DIR/core/src/fxcrt/fx_basic_util.cpp \
$$SOURCE_DIR/core/src/fxcrt/fx_basic_wstring.cpp \
$$SOURCE_DIR/core/src/fxcrt/fx_bidi.cpp \
$$SOURCE_DIR/core/src/fxcrt/fx_extension.cpp \
$$SOURCE_DIR/core/src/fxcrt/fx_ucddata.cpp \
$$SOURCE_DIR/core/src/fxcrt/fx_unicode.cpp \
$$SOURCE_DIR/core/src/fxcrt/fx_xml_composer.cpp \
$$SOURCE_DIR/core/src/fxcrt/fx_xml_parser.cpp \