Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/src/microsim/CMakeLists.txt
185785 views
1
add_subdirectory(actions)
2
add_subdirectory(cfmodels)
3
add_subdirectory(devices)
4
add_subdirectory(engine)
5
add_subdirectory(lcmodels)
6
add_subdirectory(logging)
7
add_subdirectory(output)
8
add_subdirectory(traffic_lights)
9
add_subdirectory(transportables)
10
add_subdirectory(trigger)
11
12
set(microsim_STAT_SRCS
13
MSBitSetLogic.h
14
MSBaseVehicle.cpp
15
MSBaseVehicle.h
16
MSEdge.cpp
17
MSEdge.h
18
MSEdgeControl.cpp
19
MSEdgeControl.h
20
MSEdgeWeightsStorage.cpp
21
MSEdgeWeightsStorage.h
22
MSEventControl.cpp
23
MSEventControl.h
24
MSDynamicShapeUpdater.cpp
25
MSDynamicShapeUpdater.h
26
MSFrame.cpp
27
MSFrame.h
28
MSGlobals.cpp
29
MSGlobals.h
30
MSInsertionControl.cpp
31
MSInsertionControl.h
32
MSInternalJunction.cpp
33
MSInternalJunction.h
34
MSJunction.cpp
35
MSJunction.h
36
MSJunctionControl.cpp
37
MSJunctionControl.h
38
MSJunctionLogic.cpp
39
MSJunctionLogic.h
40
MSLane.cpp
41
MSLane.h
42
MSLaneChanger.cpp
43
MSLaneChanger.h
44
MSLaneChangerSublane.cpp
45
MSLaneChangerSublane.h
46
MSLink.cpp
47
MSLink.h
48
MSLogicJunction.cpp
49
MSLogicJunction.h
50
MSMoveReminder.cpp
51
MSMoveReminder.h
52
MSNet.cpp
53
MSNet.h
54
MSNoLogicJunction.cpp
55
MSNoLogicJunction.h
56
MSRightOfWayJunction.cpp
57
MSRightOfWayJunction.h
58
MSRoute.cpp
59
MSRoute.h
60
MSRouteHandler.cpp
61
MSRouteHandler.h
62
MSRouterDefs.h
63
MSStop.cpp
64
MSStop.h
65
MSStoppingPlace.cpp
66
MSStoppingPlace.h
67
MSParkingArea.cpp
68
MSParkingArea.h
69
MSVehicle.cpp
70
MSVehicle.h
71
MSLeaderInfo.cpp
72
MSLeaderInfo.h
73
MSVehicleContainer.cpp
74
MSVehicleContainer.h
75
MSVehicleControl.cpp
76
MSVehicleControl.h
77
MSVehicleTransfer.cpp
78
MSVehicleTransfer.h
79
MSVehicleType.cpp
80
MSVehicleType.h
81
MSStateHandler.h
82
MSStateHandler.cpp
83
MSDriverState.h
84
MSDriverState.cpp
85
Command_RouteReplacement.h
86
Command_RouteReplacement.cpp
87
MSTrainHelper.cpp
88
MSTrainHelper.h
89
MSStopOptimizer.h
90
MSStopOptimizer.cpp
91
)
92
93
add_library(microsim STATIC ${microsim_STAT_SRCS})
94
add_dependencies(microsim generate-version-h)
95
set_property(TARGET microsim PROPERTY PROJECT_LABEL "z_microsim")
96
97