You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cmake/Tests/RunCMake/FetchContent/DirectIgnoresDetails.cmake

13 lines
270 B

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"
)