mirror of
1
0
Fork 0
modern-cmake/examples/extended-project/cmake/add_FetchContent_MakeAvaila...

9 lines
242 B
CMake

macro(FetchContent_MakeAvailable NAME)
FetchContent_GetProperties(${NAME})
if(NOT ${NAME}_POPULATED)
FetchContent_Populate(${NAME})
add_subdirectory(${${NAME}_SOURCE_DIR} ${${NAME}_BINARY_DIR})
endif()
endmacro()