From 45f2ee1907a1effb4b724da23f56e1f3e03c7e5a Mon Sep 17 00:00:00 2001 From: Robert Maynard Date: Thu, 1 Sep 2016 08:55:12 -0400 Subject: [PATCH] Correct typo in error message of vtkm_configure_component_CUDA --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6bbcf07b2..c45f05667 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -133,7 +133,7 @@ endif (VTKm_ENABLE_TBB) if (VTKm_ENABLE_CUDA) vtkm_configure_component_CUDA() if(NOT VTKm_CUDA_FOUND) - message(SEND_ERROR "Could not load CUDA configuration. If CUDA is not available, turn off VTKm_ENABLE_TBB.") + message(SEND_ERROR "Could not load CUDA configuration. If CUDA is not available, turn off VTKm_ENABLE_CUDA.") endif() endif (VTKm_ENABLE_CUDA)