cmake/Tests/RunCMake/FetchContent/DownloadFile.cmake
2020-08-30 11:54:41 +02: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)