Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/src/netedit/dialogs/CMakeLists.txt
193874 views
1
add_subdirectory(basic)
2
add_subdirectory(elements)
3
add_subdirectory(file)
4
add_subdirectory(fix)
5
add_subdirectory(options)
6
add_subdirectory(run)
7
add_subdirectory(tools)
8
9
set(netedit_dialogs_SRCS
10
GNEACChooserDialog.cpp
11
GNEACChooserDialog.h
12
GNEAboutDialog.cpp
13
GNEAboutDialog.h
14
GNEVClassesDialog.cpp
15
GNEVClassesDialog.h
16
GNEColorDialog.cpp
17
GNEColorDialog.h
18
GNECrashDialog.cpp
19
GNECrashDialog.h
20
GNEDialog.cpp
21
GNEDialog.h
22
GNEDialogEnum.h
23
GNEGeometryPointDialog.cpp
24
GNEGeometryPointDialog.h
25
GNEHelpAttributesDialog.cpp
26
GNEHelpAttributesDialog.h
27
GNEParametersDialog.cpp
28
GNEParametersDialog.h
29
GNESaveDialog.cpp
30
GNESaveDialog.h
31
GNEUndoListDialog.cpp
32
GNEUndoListDialog.h
33
)
34
35
add_library(netedit_dialogs STATIC ${netedit_dialogs_SRCS})
36
set_property(TARGET netedit_dialogs PROPERTY PROJECT_LABEL "z_netedit_dialogs")
37
add_dependencies(netedit_dialogs generate-version-h)
38
39