From d7660a556cf6e18adfac437695eb1820584237ef Mon Sep 17 00:00:00 2001 From: Robert Maynard Date: Thu, 19 Jul 2018 12:59:34 -0400 Subject: [PATCH] vtkm_cont listed non-device sources as device-source Cleanup the device sources list in vtkm_cont to only contain .cxx files that could invoke cuda --- vtkm/cont/CMakeLists.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/vtkm/cont/CMakeLists.txt b/vtkm/cont/CMakeLists.txt index 61df9f5d6..59e5df972 100644 --- a/vtkm/cont/CMakeLists.txt +++ b/vtkm/cont/CMakeLists.txt @@ -119,6 +119,7 @@ set(sources BoundsGlobalCompute.cxx CellSet.cxx CellSetStructured.cxx + DataSet.cxx DataSetBuilderExplicit.cxx DataSetBuilderRectilinear.cxx DataSetBuilderUniform.cxx @@ -127,11 +128,14 @@ set(sources Field.cxx FieldRangeCompute.cxx FieldRangeGlobalCompute.cxx - internal/SimplePolymorphicContainer.cxx - internal/ArrayManagerExecutionShareWithControl.cxx internal/ArrayHandleBasicImpl.cxx + internal/ArrayManagerExecutionShareWithControl.cxx + internal/SimplePolymorphicContainer.cxx + MultiBlock.cxx PresetColorTables.cxx + RuntimeDeviceTracker.cxx StorageBasic.cxx + TryExecute.cxx ) # This list of sources has code that uses devices and so might need to be @@ -141,10 +145,6 @@ set(device_sources CellSetExplicit.cxx ColorTable.cxx CoordinateSystem.cxx - DataSet.cxx - MultiBlock.cxx - RuntimeDeviceTracker.cxx - TryExecute.cxx ) #-----------------------------------------------------------------------------