We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5fd3adb + 6c4f5a0 commit 52b0945Copy full SHA for 52b0945
CMakeLists.txt
@@ -90,6 +90,13 @@ configure_file("${CMAKE_CURRENT_SOURCE_DIR}/Make.helper.cmake"
90
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/lib/structure_tree.cpp.cmake"
91
"${CMAKE_CURRENT_SOURCE_DIR}/lib/structure_tree.cpp" @ONLY)
92
93
+find_package(Git)
94
+if(GIT_FOUND)
95
+ message("git found: ${GIT_EXECUTABLE}")
96
+else()
97
+ message(WARNING "git not found. Cloning of submodules will not work.")
98
+endif()
99
+
100
add_subdirectory(external)
101
add_subdirectory(include)
102
add_subdirectory(lib)
0 commit comments