9 lines
188 B
CMake
Raw Normal View History

2022-08-04 22:12:04 +02:00
include(FetchContent)
set(FETCHCONTENT_QUIET NO)
FetchContent_Declare(SomeDep
DOWNLOAD_COMMAND ${CMAKE_COMMAND} -E echo "Download command called"
)
FetchContent_MakeAvailable(SomeDep)