vtk-m/vtkm/worklet/testing/CMakeLists.txt

53 lines
1.7 KiB
CMake
Raw Normal View History

#============================================================================
## 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(unit_tests
UnitTestCellAverage.cxx
2015-07-31 14:33:54 +00:00
UnitTestClipping.cxx
UnitTestExternalFaces.cxx
UnitTestFieldHistogram.cxx
UnitTestFieldStatistics.cxx
UnitTestMarchingCubes.cxx
UnitTestPointElevation.cxx
2015-09-24 22:38:42 +00:00
UnitTestScatterCounting.cxx
UnitTestSplatKernels.cxx
2015-11-05 23:08:54 +00:00
UnitTestStreamLineUniformGrid.cxx
UnitTestTetrahedralizeExplicitGrid.cxx
UnitTestTetrahedralizeUniformGrid.cxx
2015-10-12 18:37:59 +00:00
UnitTestThreshold.cxx
UnitTestWorkletMapField.cxx
UnitTestWorkletMapFieldExecArg.cxx
UnitTestWorkletMapFieldWholeArray.cxx
UnitTestWorkletMapTopologyExplicit.cxx
UnitTestWorkletMapTopologyUniform.cxx
2015-06-19 18:23:20 +00:00
UnitTestVertexClustering.cxx
)
vtkm_save_worklet_unit_tests(${unit_tests})
vtkm_worklet_unit_tests( VTKM_DEVICE_ADAPTER_SERIAL )
if (VTKm_ENABLE_CUDA)
vtkm_worklet_unit_tests( VTKM_DEVICE_ADAPTER_CUDA )
endif()
2015-05-29 14:38:28 +00:00
if (VTKm_ENABLE_TBB)
vtkm_worklet_unit_tests( VTKM_DEVICE_ADAPTER_TBB )
endif()