blob: 2fa08c43a2787379c750724ae3ce425bbc8a714f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
cmake_policy(SET CMP0169 OLD)
include(FetchContent)
FetchContent_Declare(
t1
DOWNLOAD_COMMAND ${CMAKE_COMMAND} -E echo "Download command executed"
)
FetchContent_Populate(t1)
FetchContent_Populate(t1) # Triggers error
|