-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathITKSphinxExamplesExternalData.cmake
More file actions
73 lines (65 loc) · 2.95 KB
/
Copy pathITKSphinxExamplesExternalData.cmake
File metadata and controls
73 lines (65 loc) · 2.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
set(ExternalData_SOURCE_ROOT "${PROJECT_SOURCE_DIR}")
get_filename_component(_ITKExternalData_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
include(${_ITKExternalData_DIR}/ExternalData.cmake)
if(NOT ExternalData_OBJECT_STORES)
# Use ExternalData_OBJECT_STORES from environment as default.
set(ExternalData_OBJECT_STORES_DEFAULT "")
if(DEFINED "ENV{ExternalData_OBJECT_STORES}")
file(TO_CMAKE_PATH "$ENV{ExternalData_OBJECT_STORES}" ExternalData_OBJECT_STORES_DEFAULT)
endif()
endif()
set(ExternalData_OBJECT_STORES "${ExternalData_OBJECT_STORES_DEFAULT}" CACHE STRING
"Semicolon-separated list of local directories holding data objects in the layout %(algo)/%(hash).")
mark_as_advanced(ExternalData_OBJECT_STORES)
if(NOT ExternalData_OBJECT_STORES)
set(ExternalData_OBJECT_STORES "${CMAKE_BINARY_DIR}/ExternalData/Objects")
file(MAKE_DIRECTORY "${ExternalData_OBJECT_STORES}")
endif()
list(APPEND ExternalData_OBJECT_STORES
# Local data store populated by the ITK pre-commit hook
"${PROJECT_SOURCE_DIR}/.ExternalData"
)
set(ExternalData_BINARY_ROOT ${PROJECT_BINARY_DIR}/ExternalData)
# Expands %(algo:lower)
set(ExternalData_URL_ALGO_CID_lower cid)
set(ExternalData_URL_ALGO_MD5_lower md5)
set(ExternalData_URL_TEMPLATES "" CACHE STRING
"Additional URL templates for the ExternalData CMake script to look for testing data. E.g.
file:///var/bigharddrive/%(algo)/%(hash)")
mark_as_advanced(ExternalData_URL_TEMPLATES)
if(NOT ITK_FORBID_DOWNLOADS)
list(APPEND ExternalData_URL_TEMPLATES
# Data published on GitHub Pages
"https://insightsoftwareconsortium.github.io/ITKTestingData/%(algo)/%(hash)"
# Local IPFS gateway
"http://127.0.0.1:8080/ipfs/%(hash)"
# Protocol Labs gateway
"https://ipfs.io/ipfs/%(hash)"
# Filebase gateway
"https://ipfs.filebase.io/ipfs/%(hash)"
# Gateway for data pinned on pinata
"https://gateway.pinata.cloud/ipfs/%(hash)"
# Cloudflare gateway
"https://cloudflare-ipfs.com/ipfs/%(hash)"
# Additional gateway (modern but has redirect)
"https://dweb.link/ipfs/%(hash)"
# Data published on Girder
"https://data.kitware.com:443/api/v1/file/hashsum/%(algo)/%(hash)/download"
# Data published by developers using git-gerrit-push.
"https://itk.org/files/ExternalData/%(algo)/%(hash)"
# DataLad repository on gin.g-node.org
"https://gin.g-node.org/InsightSoftwareConsortium/ITKSphinxExamplesData/raw/main/Objects/CID/%(hash)"
)
endif()
# Tell ExternalData commands to transform raw files to content links.
set(ExternalData_LINK_CONTENT CID)
# Emscripten currently has difficulty reading symlinks.
if(EMSCRIPTEN OR WASI)
set(ExternalData_NO_SYMLINKS 1)
endif()
# Match series of the form <base>.<ext>, <base>.<n>.<ext> such that <base> may
# end in a (test) number that is not part of any series numbering.
set(ExternalData_SERIES_PARSE "()(\\.[^./]*)$")
set(ExternalData_SERIES_MATCH "(\\.[0-9]+)?")
# Sometimes we want to download very large files.
set(ExternalData_TIMEOUT_ABSOLUTE 900)