deps_builder: Bump download time out to 30 mins

The timeout was set to 60 seconds, which was problematic
for some of the larger files like boost from the blender
svn mirror.
This commit is contained in:
Ray molenkamp 2021-04-13 10:19:09 -06:00
parent b8479a70c9
commit 5936ef986a
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ function(download_source dep)
if(NOT EXISTS ${TARGET_FILE})
message("Checking source : ${dep} - source not found downloading from ${TARGET_URI}")
file(DOWNLOAD ${TARGET_URI} ${TARGET_FILE}
TIMEOUT 60 # seconds
TIMEOUT 1800 # seconds
EXPECTED_HASH ${TARGET_HASH_TYPE}=${TARGET_HASH}
TLS_VERIFY ON
SHOW_PROGRESS