forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvtkExternalData.cmake
96 lines (84 loc) · 3.79 KB
/
vtkExternalData.cmake
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
include(ExternalData)
if(NOT VTK_DATA_STORE)
# Select a default from the following.
set(VTK_DATA_STORE_DEFAULT "")
if(EXISTS "${VTK_SOURCE_DIR}/.ExternalData/config/store")
# Configuration left by developer setup script.
file(STRINGS "${VTK_SOURCE_DIR}/.ExternalData/config/store"
VTK_DATA_STORE_DEFAULT LIMIT_COUNT 1 LIMIT_INPUT 1024)
elseif(IS_DIRECTORY "${CMAKE_SOURCE_DIR}/../VTKExternalData")
# Adjacent directory created by user.
get_filename_component(VTK_DATA_STORE_DEFAULT
"${CMAKE_SOURCE_DIR}/../VTKExternalData" ABSOLUTE)
elseif(IS_DIRECTORY "${CMAKE_SOURCE_DIR}/../ExternalData")
# Generic adjacent directory created by user.
get_filename_component(VTK_DATA_STORE_DEFAULT
"${CMAKE_SOURCE_DIR}/../ExternalData" ABSOLUTE)
elseif(DEFINED "ENV{VTKExternalData_OBJECT_STORES}")
# The VTKExternalData environment variable.
file(TO_CMAKE_PATH "$ENV{VTKExternalData_OBJECT_STORES}" VTK_DATA_STORE_DEFAULT)
elseif(DEFINED "ENV{ExternalData_OBJECT_STORES}")
# Generic ExternalData environment variable.
file(TO_CMAKE_PATH "$ENV{ExternalData_OBJECT_STORES}" VTK_DATA_STORE_DEFAULT)
endif()
endif()
# Provide users with an option to select a local object store,
# starting with the above-selected default.
set(VTK_DATA_STORE "${VTK_DATA_STORE_DEFAULT}" CACHE PATH
"Local directory holding ExternalData objects in the layout %(algo)/%(hash).")
mark_as_advanced(VTK_DATA_STORE)
# Use a store in the build tree if none is otherwise configured.
if(NOT VTK_DATA_STORE)
if(ExternalData_OBJECT_STORES)
set(VTK_DATA_STORE "")
else()
set(VTK_DATA_STORE "${CMAKE_BINARY_DIR}/ExternalData/Objects")
file(MAKE_DIRECTORY "${VTK_DATA_STORE}")
endif()
endif()
# Tell ExternalData module about selected object stores.
list(APPEND ExternalData_OBJECT_STORES
# Store selected by VTK-specific configuration above.
${VTK_DATA_STORE}
# Local data store populated by the VTK pre-commit hook
"${CMAKE_SOURCE_DIR}/.ExternalData"
)
set(ExternalData_BINARY_ROOT ${CMAKE_BINARY_DIR}/ExternalData)
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 VTK_FORBID_DOWNLOADS)
list(APPEND ExternalData_URL_TEMPLATES
# Data published by Girder
"https://data.kitware.com/api/v1/file/hashsum/%(algo)/%(hash)/download"
# Data published by developers using git-gitlab-push.
"https://www.vtk.org/files/ExternalData/%(algo)/%(hash)"
)
endif()
# Tell ExternalData commands to transform raw files to content links.
# TODO: Condition this feature on presence of our pre-commit hook.
set(ExternalData_LINK_CONTENT SHA512)
# 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]+)?")
if(DEFINED ENV{DASHBOARD_TEST_FROM_CTEST})
# Dashboard builds always need data.
set(VTK_DATA_EXCLUDE_FROM_ALL OFF)
endif()
if(NOT DEFINED VTK_DATA_EXCLUDE_FROM_ALL)
if(EXISTS "${VTK_SOURCE_DIR}/.ExternalData/config/exclude-from-all")
# Configuration left by developer setup script.
file(STRINGS "${VTK_SOURCE_DIR}/.ExternalData/config/exclude-from-all"
VTK_DATA_EXCLUDE_FROM_ALL_DEFAULT LIMIT_COUNT 1 LIMIT_INPUT 1024)
elseif(DEFINED "ENV{VTK_DATA_EXCLUDE_FROM_ALL}")
set(VTK_DATA_EXCLUDE_FROM_ALL_DEFAULT
"$ENV{VTK_DATA_EXCLUDE_FROM_ALL}")
else()
set(VTK_DATA_EXCLUDE_FROM_ALL_DEFAULT OFF)
endif()
set(VTK_DATA_EXCLUDE_FROM_ALL "${VTK_DATA_EXCLUDE_FROM_ALL_DEFAULT}"
CACHE BOOL "Exclude test data download from default 'all' target."
)
mark_as_advanced(VTK_DATA_EXCLUDE_FROM_ALL)
endif()