File tree 3 files changed +15
-10
lines changed
3 files changed +15
-10
lines changed Original file line number Diff line number Diff line change 1
- [submodule "imgui "]
2
- path = external/imgui
3
- url = https://github.com/ocornut/imgui.git
4
- branch = docking
5
1
[submodule "glfw "]
6
2
path = external/glfw
7
3
url = https://github.com/glfw/glfw.git
Original file line number Diff line number Diff line change @@ -75,16 +75,26 @@ set(EIGEN_DOC_USE_MATHJAX OFF)
75
75
add_subdirectory (eigen)
76
76
set_property (TARGET eigen PROPERTY FOLDER "External/Eigen3" )
77
77
78
+ # Imnodes configuration
79
+ if ((NOT EXISTS imnodes) OR (NOT IS_DIRECTORY imnodes))
80
+ message (STATUS "> Cloning imnodes from remote..." )
81
+ execute_process (
82
+ COMMAND git submodule update --init imnodes
83
+ WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
84
+ )
85
+ else ()
86
+ message (STATUS "> Found imnodes submodule folder" )
87
+ endif ()
78
88
79
- # Imgui configuration
80
- if ((NOT EXISTS imgui ) OR (NOT IS_DIRECTORY imgui ))
81
- message (STATUS "> Cloning imgui from remote..." )
89
+ # Implot configuration
90
+ if ((NOT EXISTS implot ) OR (NOT IS_DIRECTORY implot ))
91
+ message (STATUS "> Cloning implot from remote..." )
82
92
execute_process (
83
- COMMAND git submodule update --init imgui
93
+ COMMAND git submodule update --init implot
84
94
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
85
95
)
86
96
else ()
87
- message (STATUS "> Found Imgui submodule folder" )
97
+ message (STATUS "> Found implot submodule folder" )
88
98
endif ()
89
99
90
100
set (target_name imgui)
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments