1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-05-12 22:54:54 +00:00
Files
OrcaSlicer-bambulab/deps_src/mcut/cmake/add_FetchContent_MakeAvailable.cmake

8 lines
227 B
CMake
Raw Normal View History

2026-05-11 07:39:33 -05:00
macro(FetchContent_MakeAvailable NAME)
FetchContent_GetProperties(${NAME})
if(NOT ${NAME}_POPULATED)
FetchContent_Populate(${NAME})
add_subdirectory(${${NAME}_SOURCE_DIR} ${${NAME}_BINARY_DIR})
endif()
endmacro()