PreserveEmptyArgs.cmake 316 B

123456789101112131415
  1. cmake_policy(SET CMP0169 OLD)
  2. include(FetchContent)
  3. # Need to see the download command output
  4. set(FETCHCONTENT_QUIET OFF)
  5. FetchContent_Declare(
  6. t1
  7. DOWNLOAD_COMMAND ${CMAKE_COMMAND} -P
  8. ${CMAKE_CURRENT_LIST_DIR}/countArgs.cmake
  9. before "" after
  10. )
  11. FetchContent_Populate(t1)