-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathIntersectionRoadSimulationandVisualization.pro
84 lines (76 loc) · 2.23 KB
/
IntersectionRoadSimulationandVisualization.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
#-------------------------------------------------
#
# Project created by QtCreator 2017-04-05T12:14:21
#
#-------------------------------------------------
QT += core gui svg widgets printsupport opengl
CONFIG += static
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = IntersectionRoadSimulationandVisualization
TEMPLATE = app
RESOURCES += \
resource.qrc
HEADERS += \
Entities/TrafficLight/lightwidget.h \
Entities/TrafficLight/lightwidgetleft.h \
Entities/TrafficLight/trafficlight.h \
Entities/Vehicle/vehicle.h \
Entities/Vehicle/vehiclesight.h \
Entities/trafficcontroller.h \
Entities/trafficdetector.h \
UI/graphicsview.h \
UI/mainwindow.h \
UI/simulationscene.h \
UI/visualizepanel.h \
Utilities/generator.h \
Utilities/qcustomplot.h \
Utilities/road.h \
Utilities/simulationcontrol.h \
Utilities/vehiclesgenerator.h \
commonenum.h \
UI/simulationcontrolwidget.h \
UI/uimainwindow.h \
UI/aboutwidget.h \
Utilities/roadintersectionsimulation.h \
UI/helpwidget.h \
Utilities/qlightboxwidget.h \
UI/intropage.h \
UI/simulationsetup.h
SOURCES += \
Entities/TrafficLight/lightwidget.cpp \
Entities/TrafficLight/lightwidgetleft.cpp \
Entities/TrafficLight/trafficlight.cpp \
Entities/Vehicle/vehicle.cpp \
Entities/Vehicle/vehiclesight.cpp \
Entities/trafficcontroller.cpp \
Entities/trafficdetector.cpp \
UI/graphicsview.cpp \
UI/mainwindow.cpp \
UI/simulationscene.cpp \
UI/visualizepanel.cpp \
Utilities/generator.cpp \
Utilities/qcustomplot.cpp \
Utilities/road.cpp \
Utilities/simulationcontrol.cpp \
Utilities/vehiclesgenerator.cpp \
main.cpp \
UI/simulationcontrolwidget.cpp \
UI/uimainwindow.cpp \
UI/aboutwidget.cpp \
Utilities/roadintersectionsimulation.cpp \
UI/helpwidget.cpp \
Utilities/qlightboxwidget.cpp \
UI/intropage.cpp \
UI/simulationsetup.cpp
FORMS += \
UI/mainwindow.ui \
UI/visualizepanel.ui \
Utilities/simulationcontrol.ui \
UI/simulationcontrolwidget.ui \
UI/uimainwindow.ui \
UI/aboutwidget.ui \
UI/helpwidget.ui \
UI/intropage.ui \
UI/simulationsetup.ui
DISTFILES += \
CMakeLists.txt