vtk-m2/vtkm/worklet/contourtree_distributed/CMakeLists.txt
Oliver Ruebel 66c96a983f Add BRACT for distributed contour tree computation
This merge request is Phase 1 of several to implement the distributed parallel
contour tree in VTKm. This merge requests adds the base outline for the
algorithm. The implementation of the details of the algorithm in the
BoundaryRestrictedAugmentedContourTree.h is currently still missing.
However, these will require a substantial (~3000) lines of additional code.
The goal is to stage the integration process across merge requests to make
the review process simpler.
2020-06-12 11:50:01 -06:00

24 lines
761 B
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.
##============================================================================
set(headers
ContourTreeBlockData.h
SpatialDecomposition.h
MultiBlockContourTreeHelper.h
MergeBlockFunctor.h
BoundaryRestrictedAugmentedContourTree.h
BoundaryRestrictedAugmentedContourTreeMaker.h
HierarchicalContourTree.h
)
vtkm_declare_headers(${headers})
add_subdirectory(bract_maker)