CMake/Tests/RunCMake/FetchContent/DownloadFile.cmake
2020-04-03 22:05:55 +11:00

10 lines
151 B
CMake

include(FetchContent)
FetchContent_Declare(
t1
URL ${CMAKE_CURRENT_LIST_DIR}/dummyFile.txt
DOWNLOAD_NO_EXTRACT YES
)
FetchContent_Populate(t1)