vtk-m/vtkm/worklet/CMakeLists.txt
Patricia Kroll Fasel - 090207 f3766449f2 Cosmology halo finder
Running friend of friends algorithm and then NxN most bound particle
after to find halo center. Cosmology center finder running NxN MBP
algorithm followed by a estimator reducing the problem to MxN MBP
to speed up run.
2017-09-06 11:43:40 -06:00

88 lines
2.3 KiB
CMake

##============================================================================
## Copyright (c) Kitware, Inc.
## All rights reserved.
## See LICENSE.txt for details.
## This software is distributed WITHOUT ANY WARRANTY; without even
## the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
## PURPOSE. See the above copyright notice for more information.
##
## Copyright 2014 Sandia Corporation.
## Copyright 2014 UT-Battelle, LLC.
## Copyright 2014 Los Alamos National Security.
##
## Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
## the U.S. Government retains certain rights in this software.
##
## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National
## Laboratory (LANL), the U.S. Government retains certain rights in
## this software.
##============================================================================
set(headers
AverageByKey.h
CellAverage.h
CellDeepCopy.h
Clip.h
ContourTreeUniform.h
CosmoTools.h
DispatcherMapField.h
DispatcherMapTopology.h
DispatcherPointNeighborhood.h
DispatcherReduceByKey.h
DispatcherStreamingMapField.h
ExternalFaces.h
ExtractGeometry.h
ExtractPoints.h
ExtractStructured.h
FieldEntropy.h
FieldHistogram.h
FieldStatistics.h
Gradient.h
KdTree3D.h
KernelSplatter.h
Keys.h
Magnitude.h
MarchingCubes.h
MarchingCubesDataTables.h
Mask.h
MaskPoints.h
ParticleAdvection.h
PointAverage.h
PointElevation.h
RemoveUnusedPoints.h
ScatterCounting.h
ScatterIdentity.h
ScatterPermutation.h
ScatterUniform.h
StreamLineUniformGrid.h
SurfaceNormals.h
Tetrahedralize.h
Threshold.h
ThresholdPoints.h
Triangulate.h
VertexClustering.h
WaveletCompressor.h
WorkletMapField.h
WorkletMapTopology.h
WorkletPointNeighborhood.h
WorkletReduceByKey.h
)
#-----------------------------------------------------------------------------
add_subdirectory(internal)
add_subdirectory(contourtree)
add_subdirectory(cosmotools)
add_subdirectory(gradient)
add_subdirectory(splatkernels)
add_subdirectory(spatialstructure)
add_subdirectory(tetrahedralize)
add_subdirectory(triangulate)
add_subdirectory(wavelets)
add_subdirectory(particleadvection)
vtkm_declare_headers(${headers})
#-----------------------------------------------------------------------------
add_subdirectory(testing)