summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/FetchContent/DirectIgnoresDetails.cmake
blob: 0731b4390c114ed2f2250d6b2db6aadd4fbf5be3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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"
)