Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/src/netedit/elements/CMakeLists.txt
193874 views
1
add_subdirectory(additional)
2
add_subdirectory(data)
3
add_subdirectory(demand)
4
add_subdirectory(moving)
5
add_subdirectory(network)
6
7
set(netedit_elements_SRCS
8
GNEAttributeCarrier.cpp
9
GNEAttributeCarrier.h
10
GNECandidateElement.cpp
11
GNECandidateElement.h
12
GNEContour.cpp
13
GNEContour.h
14
GNEGeneralHandler.cpp
15
GNEGeneralHandler.h
16
GNEHierarchicalElement.cpp
17
GNEHierarchicalElement.h
18
GNEHierarchicalStructureChildren.cpp
19
GNEHierarchicalStructureChildren.h
20
GNEHierarchicalStructureParents.cpp
21
GNEHierarchicalStructureParents.h
22
GNEPathElement.cpp
23
GNEPathElement.h
24
)
25
26
add_library(netedit_elements STATIC ${netedit_elements_SRCS})
27
set_property(TARGET netedit_elements PROPERTY PROJECT_LABEL "z_netedit_elements")
28
29