-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRepos.cmake
More file actions
107 lines (94 loc) · 4.42 KB
/
Copy pathRepos.cmake
File metadata and controls
107 lines (94 loc) · 4.42 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
set(DREAM3D_Base_Repos
CMP
SIMPL
SIMPLView
H5Support
EbsdLib
DREAM3D
)
if(CI_CLONE_DREAM3D_DATA)
list(APPEND DREAM3D_Base_Repos DREAM3D_Data)
endif()
#--------------------------------------------------------------------------------------------------
# CMP Details
#--------------------------------------------------------------------------------------------------
set(CMP_REPO_NAME "CMP")
set(CMP_BASE_URL "https://www.github.com")
set(CMP_GH_ORG "bluequartzsoftware")
set(CMP_GIT_BRANCH "develop")
#--------------------------------------------------------------------------------------------------
# SIMPL Details
#--------------------------------------------------------------------------------------------------
set(SIMPL_REPO_NAME "SIMPL")
set(SIMPL_BASE_URL "https://www.github.com")
set(SIMPL_GH_ORG "bluequartzsoftware")
set(SIMPL_GIT_BRANCH "develop")
#--------------------------------------------------------------------------------------------------
# SIMPLView Details
#--------------------------------------------------------------------------------------------------
set(SIMPLView_REPO_NAME "SIMPLView")
set(SIMPLView_BASE_URL "https://www.github.com")
set(SIMPLView_GH_ORG "bluequartzsoftware")
set(SIMPLView_GIT_BRANCH "develop")
#--------------------------------------------------------------------------------------------------
# H5Support Details
#--------------------------------------------------------------------------------------------------
set(H5Support_REPO_NAME "H5Support")
set(H5Support_BASE_URL "https://www.github.com")
set(H5Support_GH_ORG "bluequartzsoftware")
set(H5Support_GIT_BRANCH "develop")
#--------------------------------------------------------------------------------------------------
# EbsdLib Details
#--------------------------------------------------------------------------------------------------
set(EbsdLib_REPO_NAME "EbsdLib")
set(EbsdLib_BASE_URL "https://www.github.com")
set(EbsdLib_GH_ORG "bluequartzsoftware")
set(EbsdLib_GIT_BRANCH "develop")
#--------------------------------------------------------------------------------------------------
# DREAM3D Details
#--------------------------------------------------------------------------------------------------
set(DREAM3D_REPO_NAME "DREAM3D")
set(DREAM3D_BASE_URL "https://www.github.com")
set(DREAM3D_GH_ORG "bluequartzsoftware")
set(DREAM3D_GIT_BRANCH "develop")
#--------------------------------------------------------------------------------------------------
# DREAM3D_Data Details
#--------------------------------------------------------------------------------------------------
set(DREAM3D_Data_REPO_NAME "DREAM3D_Data")
set(DREAM3D_Data_BASE_URL "https://www.github.com")
set(DREAM3D_Data_GH_ORG "dream3d")
set(DREAM3D_Data_GIT_BRANCH "develop")
set(DREAM3D_Plugins
ITKImageProcessing
SimulationIO
DREAM3DReview
UCSBUtilities
)
#--------------------------------------------------------------------------------------------------
# ITKImageProcessing Details
#--------------------------------------------------------------------------------------------------
set(ITKImageProcessing_REPO_NAME "ITKImageProcessing")
set(ITKImageProcessing_BASE_URL "https://www.github.com")
set(ITKImageProcessing_GH_ORG "bluequartzsoftware")
set(ITKImageProcessing_GIT_BRANCH "develop")
#--------------------------------------------------------------------------------------------------
# SimulationIO Details
#--------------------------------------------------------------------------------------------------
set(SimulationIO_REPO_NAME "SimulationIO")
set(SimulationIO_BASE_URL "https://www.github.com")
set(SimulationIO_GH_ORG "bluequartzsoftware")
set(SimulationIO_GIT_BRANCH "develop")
#--------------------------------------------------------------------------------------------------
# DREAM3DReview Details
#--------------------------------------------------------------------------------------------------
set(DREAM3DReview_REPO_NAME "DREAM3DReview")
set(DREAM3DReview_BASE_URL "https://www.github.com")
set(DREAM3DReview_GH_ORG "dream3d")
set(DREAM3DReview_GIT_BRANCH "develop")
#--------------------------------------------------------------------------------------------------
# UCSBUtilities Details
#--------------------------------------------------------------------------------------------------
set(UCSBUtilities_REPO_NAME "UCSBUtilities")
set(UCSBUtilities_BASE_URL "https://www.github.com")
set(UCSBUtilities_GH_ORG "dream3d")
set(UCSBUtilities_GIT_BRANCH "develop")