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/UsesTerminalOverride.cmake

18 lines
344 B

include(FetchContent)
set(FETCHCONTENT_QUIET NO)
FetchContent_Declare(
t1
DOWNLOAD_COMMAND ${CMAKE_COMMAND} -E echo "Logged from t1 download step"
USES_TERMINAL_DOWNLOAD NO
)
FetchContent_Populate(t1)
FetchContent_Populate(
t2
DOWNLOAD_COMMAND ${CMAKE_COMMAND} -E echo "Logged from t2 download step"
USES_TERMINAL_DOWNLOAD NO
)