DownloadFile.cmake 151 B

123456789
  1. include(FetchContent)
  2. FetchContent_Declare(
  3. t1
  4. URL ${CMAKE_CURRENT_LIST_DIR}/dummyFile.txt
  5. DOWNLOAD_NO_EXTRACT YES
  6. )
  7. FetchContent_Populate(t1)