mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 13:20:47 -06:00
13 lines
270 B
CMake
13 lines
270 B
CMake
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
t1
|
|
DOWNLOAD_COMMAND ${CMAKE_COMMAND} -E echo "Saved details used"
|
|
)
|
|
|
|
# No QUIET option given, so command output will be shown
|
|
FetchContent_Populate(
|
|
t1
|
|
DOWNLOAD_COMMAND ${CMAKE_COMMAND} -E echo "Local details used"
|
|
)
|