Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/src/traci-server/CMakeLists.txt
169668 views
1
SET(traciserver_STAT_SRCS
2
TraCIServer.h
3
TraCIServer.cpp
4
TraCIServerAPI_Edge.h
5
TraCIServerAPI_Edge.cpp
6
TraCIServerAPI_InductionLoop.h
7
TraCIServerAPI_InductionLoop.cpp
8
TraCIServerAPI_Junction.h
9
TraCIServerAPI_Junction.cpp
10
TraCIServerAPI_Lane.h
11
TraCIServerAPI_Lane.cpp
12
TraCIServerAPI_MultiEntryExit.h
13
TraCIServerAPI_MultiEntryExit.cpp
14
TraCIServerAPI_LaneArea.h
15
TraCIServerAPI_LaneArea.cpp
16
TraCIServerAPI_Person.h
17
TraCIServerAPI_Person.cpp
18
TraCIServerAPI_POI.h
19
TraCIServerAPI_POI.cpp
20
TraCIServerAPI_Polygon.h
21
TraCIServerAPI_Polygon.cpp
22
TraCIServerAPI_Route.h
23
TraCIServerAPI_Route.cpp
24
TraCIServerAPI_Calibrator.h
25
TraCIServerAPI_Calibrator.cpp
26
TraCIServerAPI_BusStop.h
27
TraCIServerAPI_BusStop.cpp
28
TraCIServerAPI_ParkingArea.h
29
TraCIServerAPI_ParkingArea.cpp
30
TraCIServerAPI_ChargingStation.h
31
TraCIServerAPI_ChargingStation.cpp
32
TraCIServerAPI_RouteProbe.h
33
TraCIServerAPI_RouteProbe.cpp
34
TraCIServerAPI_Rerouter.h
35
TraCIServerAPI_Rerouter.cpp
36
TraCIServerAPI_VariableSpeedSign.h
37
TraCIServerAPI_VariableSpeedSign.cpp
38
TraCIServerAPI_MeanData.h
39
TraCIServerAPI_MeanData.cpp
40
TraCIServerAPI_OverheadWire.h
41
TraCIServerAPI_OverheadWire.cpp
42
TraCIServerAPI_Simulation.h
43
TraCIServerAPI_Simulation.cpp
44
TraCIServerAPI_TrafficLight.h
45
TraCIServerAPI_TrafficLight.cpp
46
TraCIServerAPI_Vehicle.h
47
TraCIServerAPI_Vehicle.cpp
48
TraCIServerAPI_VehicleType.h
49
TraCIServerAPI_VehicleType.cpp
50
)
51
52
add_library(traciserver STATIC ${traciserver_STAT_SRCS})
53
set_property(TARGET traciserver PROPERTY PROJECT_LABEL "z_traciserver")
54
add_dependencies(traciserver generate-version-h)
55
56