This repository has been archived by the owner on Mar 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
jpseditor.pro
157 lines (141 loc) · 4.4 KB
/
jpseditor.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
84
85
86
87
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
# This file is part of JuPedSim.
#
# JuPedSim is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# any later version.
#
# JuPedSim is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with JuPedSim. If not, see <http://www.gnu.org/licenses/>.
#
# copyright <2009-2018> Forschungszentrum Juelich GmbH.
# Compatibility with Qt4 and Qt5
greaterThan(QT_MAJOR_VERSION, 4):QT += widgets
TEMPLATE = app
TARGET = JPSeditor
CONFIG += qt xml gui;
CONFIG += c++11
QMAKE_CXXFLAGS += -std=c++11
QMAKE_CXXFLAGS += -static
#QMAKE_CXXFLAGS += -static-libgcc
#QMAKE_CXXFLAGS += -static-libstdc++
#QMAKE_CXXFLAGS_WARN_ON = -Wall -Wno-unused-parameter
FORMS += \
forms/mainwindow.ui \
forms/roomwidget.ui \
forms/widgetlandmark.ui \
forms/widgetsettings.ui \
forms/inifilewidget.ui \
forms/settingdialog.ui \
forms/snappingoptions.ui \
forms/sourcewidget.ui \
forms/goalwidget.ui \
HEADERS += \
src/dtrace.h \
src/mainWindow.h \
src/GraphicView.h \
src/graphicscene.h \
src/widgets/roomwidget.h \
src/rooms.h \
src/datamanager.h \
src/jpscrossing.h \
src/jpsLineItem.h \
src/jpsexit.h \
src/jpsobstacle.h \
src/jpslandmark.h \
src/widgets/widgetlandmark.h \
src/widgets/widgetsettings.h \
src/jpsconnection.h \
src/jpsregion.h \
src/dtrace.h \
src/widgets/settingdialog.h \
src/widgets/inifilewidget.h \
src/widgets/snappingoptions.h \
src/jpssource.h \
src/widgets/sourcewidget.h \
src/widgets/goalwidget.h \
src/elementtype.h \
src/global.h \
src/models/jpselementlistmodel.h \
src/models/jpssourcelistmodel.h \
src/jpsgoal.h \
src/models/jpsgoallistmodel.h \
src/XML/goalreader.h \
src/XML/sourcereader.h \
dxflib/src/dl_writer_ascii.h \
dxflib/src/dl_writer.h \
dxflib/src/dl_global.h \
dxflib/src/dl_extrusion.h \
dxflib/src/dl_exception.h \
dxflib/src/dl_entities.h \
dxflib/src/dl_dxf.h \
dxflib/src/dl_creationinterface.h \
dxflib/src/dl_creationadapter.h \
dxflib/src/dl_codes.h \
dxflib/src/dl_attributes.h \
src/UndoFramework/action.h \
src/UndoFramework/actionstack.h \
src/UndoFramework/lineaction.h \
src/AutomaticRoomIdentification/roomID.h \
src/AutomaticRoomIdentification/roomdefinition.h \
src/AutomaticRoomIdentification/roomidentification.h \
src/tinyxml/tinystr.h \
src/tinyxml/tinyxml.h
SOURCES += \
src/mainWindow.cpp \
src/main.cpp \
src/GraphicView.cpp \
src/graphicscene.cpp \
src/widgets/roomwidget.cpp \
src/rooms.cpp \
src/datamanager.cpp \
src/jpscrossing.cpp \
src/jpsLineItem.cpp \
src/jpsexit.cpp \
src/jpsobstacle.cpp \
src/jpslandmark.cpp \
src/widgets/widgetlandmark.cpp \
src/widgets/widgetsettings.cpp \
src/jpsconnection.cpp \
src/jpsregion.cpp \
src/widgets/settingdialog.cpp \
src/widgets/inifilewidget.cpp \
src/widgets/snappingoptions.cpp \
src/jpssource.cpp \
src/widgets/sourcewidget.cpp \
src/jpsgoal.cpp \
src/widgets/goalwidget.cpp \
src/global.cpp \
src/models/jpselementlistmodel.cpp \
src/models/jpssourcelistmodel.cpp \
src/models/jpsgoallistmodel.cpp \
src/XML/goalreader.cpp \
src/XML/sourcereader.cpp \
dxflib/src/dl_writer_ascii.cpp \
dxflib/src/dl_dxf.cpp \
src/UndoFramework/action.cpp \
src/UndoFramework/actionstack.cpp \
src/UndoFramework/lineaction.cpp \
src/AutomaticRoomIdentification/roomdefinition.cpp \
src/AutomaticRoomIdentification/roomidentification.cpp \
src/tinyxml/tinystr.cpp \
src/tinyxml/tinyxml.cpp \
src/tinyxml/tinyxmlerror.cpp \
src/tinyxml/tinyxmlparser.cpp \
#INCLUDEPATH += D:/boost_1_59_0/boost_1_59_0
RESOURCES += \
Resources/resources.qrc
RC_FILE = Resources/jpseditor.rc
#osx fix
ICON = Resources/jpseditor.icns
#INCLUDEPATH += $$(ROOTSYS)/include
demos.path = /usr/local/bin/jpseditor
demos.files = examples/*
INSTALLS += demos
target.path = /usr/local/bin/jpseditor
INSTALLS += target