blob: 6863c305ff4cf13d0bc18c3ed5a6c183a23d222e (
plain)
1
2
3
4
5
6
7
8
9
|
include(FetchContent)
FetchContent_Declare(
t1
DOWNLOAD_COMMAND ${CMAKE_COMMAND} -E echo "Download command executed"
)
FetchContent_Populate(t1)
FetchContent_Populate(t1) # Triggers error
|