FirstDetailsWin.cmake 311 B

12345678910111213141516
  1. include(FetchContent)
  2. # Need to see the download command output
  3. set(FETCHCONTENT_QUIET OFF)
  4. FetchContent_Declare(
  5. t1
  6. DOWNLOAD_COMMAND ${CMAKE_COMMAND} -E echo "First details used"
  7. )
  8. FetchContent_Declare(
  9. t1
  10. DOWNLOAD_COMMAND ${CMAKE_COMMAND} -E echo "Second details used"
  11. )
  12. FetchContent_Populate(t1)