1
TEMPLATE = app
2
LANGUAGE = C++
3
4
CONFIG += qt warn_on release
5
6
HEADERS += api.h \
7
branchobj.h \
8
exports.h \
9
findwindow.h \
10
flagobj.h \
11
flagrowobj.h \
12
floatimageobj.h \
13
floatobj.h \
14
frameobj.h \
15
headingobj.h \
16
imageobj.h \
17
linkablemapobj.h \
18
xlinkobj.h \
19
mainwindow.h \
20
mapcenterobj.h \
21
mapeditor.h \
22
mapobj.h \
23
misc.h \
24
noteobj.h \
25
ornamentedobj.h \
26
process.h \
27
selection.h \
28
texteditor.h \
29
version.h \
30
xml.h \
31
settings.h \
32
options.h
33
34
SOURCES += api.cpp \
35
branchobj.cpp \
36
exports.cpp \
37
findwindow.cpp \
38
flagobj.cpp \
39
flagrowobj.cpp \
40
floatimageobj.cpp \
41
floatobj.cpp \
42
frameobj.cpp \
43
headingobj.cpp \
44
imageobj.cpp \
45
linkablemapobj.cpp \
46
xlinkobj.cpp \
47
main.cpp \
48
mainwindow.cpp \
49
mapcenterobj.cpp \
50
mapeditor.cpp \
51
mapobj.cpp \
52
misc.cpp \
53
noteobj.cpp \
54
ornamentedobj.cpp \
55
process.cpp \
56
selection.cpp \
57
texteditor.cpp \
58
xml.cpp \
59
settings.cpp \
60
options.cpp
61
62
FORMS = exporthtmldialog.ui \
63
exportxhtmldialog.ui \
64
showtextdialog.ui \
65
extrainfodialog.ui \
66
editxlinkdialog.ui
67
68
TARGET = vym
69
TRANSLATIONS += lang/vym_de.ts
70
TRANSLATIONS += lang/vym_en.ts
71
72
73
74
DESTROOT = /usr
75
76
target.path = $${DESTROOT}/bin
77
INSTALLS += target
78
79
support.files = styles/ scripts/ icons/ lang/
80
support.path = $${DESTROOT}/share/vym
81
INSTALLS += support
82
83
doc.files = doc/*
84
doc.path = $${DESTROOT}/share/doc/packages/vym
85
INSTALLS += doc
86
87
demo.files = demos/
88
demo.path = $${DESTROOT}/share/vym
89
INSTALLS += demo
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