1
2
3
4
5
6
TARGET = vym
7
TRANSLATIONS += lang/vym_de.ts
8
TRANSLATIONS += lang/vym_en.ts
9
10
11
12
DESTROOT = /usr
13
14
target.path = $${DESTROOT}/bin
15
INSTALLS += target
16
17
support.files = styles/ scripts/ icons/ lang/
18
support.path = $${DESTROOT}/share/vym
19
INSTALLS += support
20
21
doc.files = doc/*
22
doc.path = $${DESTROOT}/share/doc/packages/vym
23
INSTALLS += doc
24
25
demo.files = demos/
26
demo.path = $${DESTROOT}/share/vym
27
INSTALLS += demo
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
TEMPLATE = app
67
LANGUAGE = C++
68
69
CONFIG += qt warn_on release
70
71
72
HEADERS += branchobj.h \
73
exports.h \
74
findwindow.h \
75
flagobj.h \
76
flagrowobj.h \
77
floatimageobj.h \
78
floatobj.h \
79
frameobj.h \
80
headingobj.h \
81
imageobj.h \
82
linkablemapobj.h \
83
xlinkobj.h \
84
mainwindow.h \
85
mapcenterobj.h \
86
mapeditor.h \
87
mapobj.h \
88
misc.h \
89
noteobj.h \
90
ornamentedobj.h \
91
process.h \
92
selection.h \
93
texteditor.h \
94
version.h \
95
xml.h \
96
settings.h \
97
options.h
98
SOURCES += branchobj.cpp \
99
exports.cpp \
100
findwindow.cpp \
101
flagobj.cpp \
102
flagrowobj.cpp \
103
floatimageobj.cpp \
104
floatobj.cpp \
105
frameobj.cpp \
106
headingobj.cpp \
107
imageobj.cpp \
108
linkablemapobj.cpp \
109
xlinkobj.cpp \
110
main.cpp \
111
mainwindow.cpp \
112
mapcenterobj.cpp \
113
mapeditor.cpp \
114
mapobj.cpp \
115
misc.cpp \
116
noteobj.cpp \
117
ornamentedobj.cpp \
118
process.cpp \
119
selection.cpp \
120
texteditor.cpp \
121
xml.cpp \
122
settings.cpp \
123
options.cpp
124
FORMS = exporthtmldialog.ui \
125
exportxhtmldialog.ui \
126
showtextdialog.ui \
127
extrainfodialog.ui \
128
editxlinkdialog.ui
129