mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-05 05:39:57 -05:00
2aa83fa15b
Fixes: #22619
9 lines
188 B
CMake
9 lines
188 B
CMake
include(FetchContent)
|
|
|
|
set(FETCHCONTENT_QUIET NO)
|
|
|
|
FetchContent_Declare(SomeDep
|
|
DOWNLOAD_COMMAND ${CMAKE_COMMAND} -E echo "Download command called"
|
|
)
|
|
FetchContent_MakeAvailable(SomeDep)
|