diff options
author | Robert Maynard <robert.maynard@kitware.com> | 2019-12-12 18:07:36 (GMT) |
---|---|---|
committer | Robert Maynard <robert.maynard@kitware.com> | 2019-12-16 19:35:03 (GMT) |
commit | d484a3c4d8f0bed1da42e17126bac8f7840463ef (patch) | |
tree | 94d604f51cd34a3cf185675e7589f02fb61b72d1 /Tests/Cuda | |
parent | e2a5d8374f94c7893109e11173fc770cec8a4683 (diff) | |
download | CMake-d484a3c4d8f0bed1da42e17126bac8f7840463ef.zip CMake-d484a3c4d8f0bed1da42e17126bac8f7840463ef.tar.gz CMake-d484a3c4d8f0bed1da42e17126bac8f7840463ef.tar.bz2 |
FindCUDAToolkit: correct searches for Toolkit components
Diffstat (limited to 'Tests/Cuda')
-rw-r--r-- | Tests/Cuda/Toolkit/CMakeLists.txt | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/Tests/Cuda/Toolkit/CMakeLists.txt b/Tests/Cuda/Toolkit/CMakeLists.txt index 45b700b..86b4652 100644 --- a/Tests/Cuda/Toolkit/CMakeLists.txt +++ b/Tests/Cuda/Toolkit/CMakeLists.txt @@ -28,18 +28,11 @@ foreach (cuda_lib nppc nppial nppicc nppidei nppif nppig nppim nppist nppitc npp endif() endforeach() -foreach (cuda_lib nvrtc nvToolsExt OpenCL culibos) +foreach (cuda_lib nvrtc nvToolsExt OpenCL) if(NOT TARGET CUDA::${cuda_lib}) message(FATAL_ERROR "The CUDA::${cuda_lib} target was expected but couldn't be found") endif() endforeach() -#libraries added CUDA 10 -if(CUDAToolkit_VERSION_MAJOR VERSION_GREATER 9) - if(NOT TARGET CUDA::nvjpeg) - message(FATAL_ERROR "The CUDA::nvjpeg target was expected but couldn't be found") - endif() -endif() - add_executable(Toolkit main.cpp) target_link_libraries(Toolkit PRIVATE CUDA::toolkit) |