forked from lpxxn/docx
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocx.pro
80 lines (74 loc) · 1.66 KB
/
docx.pro
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
#include(../simcube.pri)
QT += gui core xml gui-private
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
#TARGET = docxlib
#TEMPLATE = lib
TARGET = DocxTest
TEMPLATE = app
DEFINES += DOCX_LIBRARY
SOURCES += \
document.cpp \
main.cpp \
shared.cpp \
text.cpp \
#blkcntnr.cpp \
parts/documentpart.cpp \
opc/part.cpp \
opc/packuri.cpp \
opc/opcpackage.cpp \
package.cpp \
opc/parts/corepropertiespart.cpp \
opc/coreproperties.cpp \
opc/oxml.cpp \
opc/constants.cpp \
oxml/parts/oxmldocument.cpp \
oxml/oxmltext.cpp \
table.cpp \
oxml/xmlchemy.cpp \
oxml/oxmltable.cpp \
oxml/oxmlshape.cpp \
shape.cpp \
parts/imagepart.cpp \
image/image.cpp \
opc/physpkgreader.cpp \
opc/packagereader.cpp \
opc/contenttypemap.cpp \
opc/serializedrelationships.cpp \
opc/rel.cpp \
opc/packagewriter.cpp \
opc/physpkgwriter.cpp \
enums/enumtext.cpp \
length.cpp
HEADERS +=\
docx_global.h \
document.h \
shared.h \
text.h \
#blkcntnr.h \
parts/documentpart.h \
opc/part.h \
opc/packuri.h \
opc/opcpackage.h \
package.h \
opc/parts/corepropertiespart.h \
opc/coreproperties.h \
opc/oxml.h \
opc/constants.h \
oxml/parts/oxmldocument.h \
oxml/oxmltext.h \
table.h \
oxml/xmlchemy.h \
oxml/oxmltable.h \
oxml/oxmlshape.h \
shape.h \
parts/imagepart.h \
image/image.h \
opc/physpkgreader.h \
opc/packagereader.h \
opc/contenttypemap.h \
opc/serializedrelationships.h \
opc/rel.h \
opc/packagewriter.h \
opc/physpkgwriter.h \
enums/enumtext.h \
length.h