10 lines
151 B
CMake
10 lines
151 B
CMake
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
t1
|
|
URL ${CMAKE_CURRENT_LIST_DIR}/dummyFile.txt
|
|
DOWNLOAD_NO_EXTRACT YES
|
|
)
|
|
|
|
FetchContent_Populate(t1)
|