Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/src/mesosim/CMakeLists.txt
169668 views
1
2
########### next target ###############
3
4
SET(mesosim_STAT_SRCS
5
MEInductLoop.cpp
6
MEInductLoop.h
7
MELoop.cpp
8
MELoop.h
9
MESegment.cpp
10
MESegment.h
11
METriggeredCalibrator.cpp
12
METriggeredCalibrator.h
13
MEVehicle.cpp
14
MEVehicle.h
15
MEVehicleControl.cpp
16
MEVehicleControl.h
17
)
18
19
add_library(mesosim STATIC ${mesosim_STAT_SRCS})
20
set_property(TARGET mesosim PROPERTY PROJECT_LABEL "z_mesosim")
21
22
23
########### install files ###############
24
25
26
27
28
#original Makefile.am contents follow:
29
30
#noinst_LIBRARIES = libmesosim.a
31
#
32
#libmesosim_a_SOURCES = MEInductLoop.cpp MEInductLoop.h \
33
#MELoop.cpp MELoop.h \
34
#MESegment.cpp MESegment.h \
35
#METriggeredCalibrator.cpp METriggeredCalibrator.h \
36
#MEVehicle.cpp MEVehicle.h \
37
#MEVehicleControl.cpp MEVehicleControl.h
38
39