-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathIndoorMapEditor.pro
83 lines (76 loc) · 1.88 KB
/
IndoorMapEditor.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
79
80
81
82
83
#-------------------------------------------------
#
# Project created by QtCreator 2014-11-22T10:30:37
#
#-------------------------------------------------
QT += core gui printsupport
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = IndoorMapEditor
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
core/building.cpp \
core/floor.cpp \
gui/documentview.cpp \
core/polygonfeature.cpp \
io/jsonloader.cpp \
io/iomanager.cpp \
core/pubpoint.cpp \
gui/scenemodel.cpp \
gui/propertyview.cpp \
tool/abstracttool.cpp \
tool/toolmanager.cpp \
tool/polygontool.cpp \
core/scene.cpp \
tool/selecttool.cpp \
tool/pubpointtool.cpp \
gui/handle.cpp \
cmd/addenittycommand.cpp \
core/imagelayer.cpp \
gui/propviewfloor.cpp \
gui/propviewbuilding.cpp \
tool/splittool.cpp \
tool/mergetool.cpp \
tool/scaletool.cpp \
math/gdiam.cpp \
tool/edittool.cpp \
core/room.cpp \
gui/propviewroom.cpp \
core/feature.cpp \
core/polygonfeature.cpp
HEADERS += mainwindow.h \
core/building.h \
core/floor.h \
room.h \
gui/documentview.h \
core/polygonfeature.h \
io/jsonloader.h \
io/iomanager.h \
core/pubpoint.h \
gui/scenemodel.h \
gui/propertyview.h \
tool/abstracttool.h \
tool/toolmanager.h \
tool/polygontool.h \
core/scene.h \
tool/selecttool.h \
tool/pubpointtool.h \
gui/handle.h \
cmd/addenittycommand.h \
core/imagelayer.h \
gui/propviewfloor.h \
gui/propviewbuilding.h \
tool/splittool.h \
tool/mergetool.h \
tool/scaletool.h \
math/gdiam.hpp \
tool/edittool.h \
core/room.h \
gui/propviewroom.h \
core/feature.h \
core/polygonfeature.h
FORMS += mainwindow.ui
TRANSLATIONS = indoormap_zh_cn.ts\
indoormap_en.ts
RESOURCES += \
IndoorMapEditor.qrc