You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
333 B
14 lines
333 B
if(NOT "@CMAKE_CURRENT_SOURCE_DIR@" MATCHES "^/")
|
|
set(slash /)
|
|
endif()
|
|
set(url "file://${slash}@CMAKE_CURRENT_SOURCE_DIR@/FileDownloadInput.png")
|
|
set(dir "@CMAKE_CURRENT_BINARY_DIR@/downloads")
|
|
|
|
file(DOWNLOAD
|
|
${url}
|
|
${dir}/file3.png
|
|
TIMEOUT 2
|
|
STATUS status
|
|
EXPECTED_HASH SHA1=5555555555555555555555555555555555555555
|
|
)
|