p.238 in NNFS
Sync public mirror / sync (push) Failing after 24s

This commit is contained in:
2025-12-23 14:47:40 +01:00
parent 22d6ea5fad
commit bd2edea8ef
56 changed files with 4446 additions and 147 deletions
+10
View File
@@ -0,0 +1,10 @@
# Add every subdirectory inside examples/ that contains a CMakeLists.txt
file(GLOB children LIST_DIRECTORIES true RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "*")
foreach(child ${children})
if(IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/${child}" AND
EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${child}/CMakeLists.txt")
message(STATUS "Adding example: ${child}")
add_subdirectory("${child}")
endif()
endforeach()