Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/src/mesogui/CMakeLists.txt
169668 views
1
2
########### next target ###############
3
4
SET(mesogui_STAT_SRCS
5
GUIMEInductLoop.cpp
6
GUIMEInductLoop.h
7
GUIMEVehicle.cpp
8
GUIMEVehicle.h
9
GUIMEVehicleControl.cpp
10
GUIMEVehicleControl.h
11
)
12
13
add_library(mesogui STATIC ${mesogui_STAT_SRCS})
14
set_property(TARGET mesogui PROPERTY PROJECT_LABEL "z_mesogui")
15
16
17
########### install files ###############
18
19
20
21
22
#original Makefile.am contents follow:
23
24
#noinst_LIBRARIES = libmesogui.a
25
#
26
#libmesogui_a_SOURCES = GUIMEInductLoop.cpp GUIMEInductLoop.h \
27
#GUIMEVehicle.cpp GUIMEVehicle.h \
28
#GUIMEVehicleControl.cpp GUIMEVehicleControl.h
29
30