Change VTKmDetectCUDAVersion install extension

The VTKmDetectCUDAVersion.cxx source file used during configuration to
detect the native version of CUDA hardware was renamed to
VTKmDetectCUDAVersion.cu. However, the old filename was still trying to
be installed, which caused the install target to fail.
This commit is contained in:
Kenneth Moreland 2016-10-03 15:25:22 -06:00
parent 9acccf44f6
commit fffefe22a3

@ -320,7 +320,7 @@ install(
${VTKm_SOURCE_DIR}/CMake/VTKmMacros.cmake
${VTKm_SOURCE_DIR}/CMake/VTKmConfigureComponents.cmake
${VTKm_SOURCE_DIR}/CMake/VTKmCompilerOptimizations.cmake
${VTKm_SOURCE_DIR}/CMake/VTKmDetectCUDAVersion.cxx
${VTKm_SOURCE_DIR}/CMake/VTKmDetectCUDAVersion.cu
DESTINATION ${VTKm_INSTALL_CMAKE_MODULE_DIR}
)