PreserveEmptyArgs.cmake 285 B

12345678910111213
  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} -P
  7. ${CMAKE_CURRENT_LIST_DIR}/countArgs.cmake
  8. before "" after
  9. )
  10. FetchContent_Populate(t1)