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