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