forked from trilinos/Trilinos
-
Notifications
You must be signed in to change notification settings - Fork 5
/
TPLsList.cmake
209 lines (206 loc) · 8.77 KB
/
TPLsList.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
# @HEADER
# ************************************************************************
#
# Trilinos: An Object-Oriented Solver Framework
# Copyright (2001) Sandia Corporation
#
#
# Copyright (2001) Sandia Corporation. Under the terms of Contract
# DE-AC04-94AL85000, there is a non-exclusive license for use of this
# work by or on behalf of the U.S. Government. Export of this program
# may require a license from the United States Government.
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# 3. Neither the name of the Corporation nor the names of the
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# NOTICE: The United States Government is granted for itself and others
# acting on its behalf a paid-up, nonexclusive, irrevocable worldwide
# license in this data to reproduce, prepare derivative works, and
# perform publicly and display publicly. Beginning five (5) years from
# July 25, 2001, the United States Government is granted for itself and
# others acting on its behalf a paid-up, nonexclusive, irrevocable
# worldwide license in this data to reproduce, prepare derivative works,
# distribute copies to the public, perform publicly and display
# publicly, and to permit others to do so.
#
# NEITHER THE UNITED STATES GOVERNMENT, NOR THE UNITED STATES DEPARTMENT
# OF ENERGY, NOR SANDIA CORPORATION, NOR ANY OF THEIR EMPLOYEES, MAKES
# ANY WARRANTY, EXPRESS OR IMPLIED, OR ASSUMES ANY LEGAL LIABILITY OR
# RESPONSIBILITY FOR THE ACCURACY, COMPLETENESS, OR USEFULNESS OF ANY
# INFORMATION, APPARATUS, PRODUCT, OR PROCESS DISCLOSED, OR REPRESENTS
# THAT ITS USE WOULD NOT INFRINGE PRIVATELY OWNED RIGHTS.
#
# ************************************************************************
# @HEADER
#
# Define the list of TPLs, their find module names, and their classification
#
# TPL_NAME:
#
# The name of the TPL used in the CMake cache variables TPL_ENABLE_${TPL_NAME}
#
# TPL_FINDMOD:
#
# The name of the find module under that is used to get the names of the
# TPLs. If ends in '/' then this gives the directory and the standard module
# name will be used which is FindTPL${TPL_NAME}.cmake.
#
# TPL_CLASSIFICATION:
#
# PS: Primary Stable TPL
#
# Primary Stable TPLs are those TPLs that a Trilinos developer must have
# installed on their machine in order to be able to do Trilinos
# development. For example, we require that you have BLAS, LAPACK, and
# MPI installed in order to do Trilinos development. These are
# fundamental dependencies that are needed in order to do precheckin
# testing.
#
# SS: Secondary Stable TPL
#
# Secondary Stable TPLs are those TPLs that are not required in order to
# be able to develop and test Trilinos before checkins but are none the
# less offically supported. Support for SS TPLs is tested as part of the
# nightly testing process.
#
# TS: Tertiary Stable TPL
#
# Tertiary Stable TPLs are those TPLs that are supported TPLs but can not
# be included in the set of SS TPLs because they may conflicit with other
# SS Code. For example, METIS is listed as a TS TPL because it conflicts
# with ParMETIS which is declared as a SS TPL.
#
# EX: Experimental TPL
#
# Experimental TPLs are not offically supported. They represent
# experimental capabilities of Trilinos packages. Support for EX TPLs is
# never tested as part of the main nightly testing process. However,
# package developers are encouraged to set up their own nightly testing
# for their EX TPLs for their packages.
#
# The default enable for all TPLs is empty "" reguardless of the category.
# The idea is that the enabling of the TPL will be done by the package and
# other enables that the user has to set.
#
# NOTE: The TPLs must be listed in the order of increasing dependencies (if
# such dependencies exist).
#
SET( Trilinos_TPLS_FINDMODS_CLASSIFICATIONS
MKL "cmake/TPLs/" EX
yaml-cpp "cmake/TPLs/" EX
Peano "cmake/TPLs/" EX
CUDA "${${PROJECT_NAME}_TRIBITS_DIR}/core/std_tpls/" SS
CUSPARSE "cmake/TPLs/" SS
Thrust "cmake/TPLs/" SS
Cusp "cmake/TPLs/" SS
TBB "cmake/TPLs/" EX
Pthread "cmake/TPLs/" SS
HWLOC "cmake/TPLs/" SS
QTHREAD "cmake/TPLs/" SS
BinUtils "${${PROJECT_NAME}_TRIBITS_DIR}/common_tpls/" SS
ARPREC "packages/teuchos/cmake/tpls/" SS
QD "packages/teuchos/cmake/tpls/" SS
MPI "${${PROJECT_NAME}_TRIBITS_DIR}/core/std_tpls/" PS
BLAS "${${PROJECT_NAME}_TRIBITS_DIR}/common_tpls/" PS
LAPACK "${${PROJECT_NAME}_TRIBITS_DIR}/common_tpls/" PS
Boost "${${PROJECT_NAME}_TRIBITS_DIR}/common_tpls/" SS
Scotch "cmake/TPLs/" SS
OVIS "cmake/TPLs/" SS
gpcd "cmake/TPLs/" SS
METIS "cmake/TPLs/" TS
ParMETIS "cmake/TPLs/" SS
PuLP "cmake/TPLs/" EX
LibTopoMap "cmake/TPLs/" SS
PaToH "cmake/TPLs/" SS
CppUnit "cmake/TPLs/" SS
ADOLC "cmake/TPLs/" SS
ADIC "cmake/TPLs/" EX
TVMET "cmake/TPLs/" SS
MF "cmake/TPLs/" SS
ExodusII "cmake/TPLs/" SS
Nemesis "cmake/TPLs/" SS
XDMF "cmake/TPLs/" TS
Zlib "cmake/TPLs/" SS
HDF5 "${${PROJECT_NAME}_TRIBITS_DIR}/common_tpls/" EX
Netcdf "cmake/TPLs/" SS
y12m "cmake/TPLs/" SS
SuperLUDist "cmake/TPLs/" SS
SuperLUMT "cmake/TPLs/" SS
SuperLU "cmake/TPLs/" SS
Cholmod "cmake/TPLs/" EX
UMFPACK "cmake/TPLs/" SS
MA28 "cmake/TPLs/" TS
AMD "cmake/TPLs/" TS
CSparse "cmake/TPLs/" EX
HYPRE "cmake/TPLs/" EX
PETSC "${${PROJECT_NAME}_TRIBITS_DIR}/common_tpls/" SS
BLACS "cmake/TPLs/" SS
SCALAPACK "cmake/TPLs/" SS
MUMPS "cmake/TPLs/" SS
PARDISO_MKL "cmake/TPLs/" EX
PARDISO "cmake/TPLs/" EX
Oski "cmake/TPLs/" SS
TAUCS "cmake/TPLs/" SS
ForUQTK "cmake/TPLs/" EX
Dakota "cmake/TPLs/" EX
HIPS "cmake/TPLs/" EX
MATLAB "cmake/TPLs/" EX
CASK "cmake/TPLs/" EX
SPARSKIT "cmake/TPLs/" SS
QT "packages/teuchos/cmake/tpls/" SS
gtest "cmake/TPLs/" EX
BoostLib "cmake/TPLs/" SS
BoostAlbLib "cmake/TPLs/" SS
OpenNURBS "cmake/TPLs/" EX
Portals "cmake/TPLs/" SS
CrayPortals "cmake/TPLs/" SS
Gemini "cmake/TPLs/" SS
InfiniBand "cmake/TPLs/" SS
BGPDCMF "cmake/TPLs/" SS
BGQPAMI "cmake/TPLs/" SS
Pablo "cmake/TPLs/" SS
HPCToolkit "cmake/TPLs/" SS
Pnetcdf "cmake/TPLs/" SS
Clp "cmake/TPLs/" EX
GLPK "cmake/TPLs/" EX
qpOASES "cmake/TPLs/" EX
Matio "cmake/TPLs/" SS
PAPI "cmake/TPLs/" SS
MATLABLib "cmake/TPLs/" EX
Eigen "packages/teuchos/cmake/tpls/" EX
X11 "cmake/TPLs/" SS
Lemon "cmake/TPLs/" EX
GLM "cmake/TPLs/" EX
quadmath "cmake/TPLs/" EX
CAMAL "cmake/TPLs/" SS
RTlib "cmake/TPLs/" SS
AmgX "cmake/TPLs/" EX
CGAL "cmake/TPLs/" EX
VTune "cmake/TPLs/" SS
)
# NOTES:
#
# (*) ParMETIS must be listed after Scotch because the
# ParMETIS include directories must come before the
# Scotch include directories.
#