vtk-m/vtkm/filter/field_conversion/CMakeLists.txt

29 lines
859 B
CMake
Raw Permalink Normal View History

2022-01-29 20:12:01 +00:00
##============================================================================
## 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(field_conversion_headers
CellAverage.h
PointAverage.h
)
set(field_conversion_sources
CellAverage.cxx
PointAverage.cxx
)
vtkm_library(
NAME vtkm_filter_field_conversion
HEADERS ${field_conversion_headers}
2022-01-30 23:52:26 +00:00
DEVICE_SOURCES ${field_conversion_sources}
2022-01-29 20:12:01 +00:00
USE_VTKM_JOB_POOL
)
target_link_libraries(vtkm_filter PUBLIC INTERFACE vtkm_filter_field_conversion)
add_subdirectory(worklet)