diff options
author | Brad King <brad.king@kitware.com> | 2017-06-21 13:35:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-06-21 14:41:49 (GMT) |
commit | fff782f6a64a64538254b23891dc00b18ecec4fe (patch) | |
tree | 3a291de2cc28ce0c66af0e2744ad4ed0bb82722f /Tests/Cuda/WithC | |
parent | ad4a68cca00af3a20caaafbb96be67a1cc53a027 (diff) | |
download | CMake-fff782f6a64a64538254b23891dc00b18ecec4fe.zip CMake-fff782f6a64a64538254b23891dc00b18ecec4fe.tar.gz CMake-fff782f6a64a64538254b23891dc00b18ecec4fe.tar.bz2 |
Tests: Simplify CUDA rpath on macOS
Use the `BUILD_RPATH` property and reference the CMake-computed location
of the runtime libraries.
Diffstat (limited to 'Tests/Cuda/WithC')
-rw-r--r-- | Tests/Cuda/WithC/CMakeLists.txt | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Tests/Cuda/WithC/CMakeLists.txt b/Tests/Cuda/WithC/CMakeLists.txt index 1f25ab4..831ce12 100644 --- a/Tests/Cuda/WithC/CMakeLists.txt +++ b/Tests/Cuda/WithC/CMakeLists.txt @@ -6,7 +6,6 @@ string(APPEND CMAKE_CUDA_FLAGS " -gencode arch=compute_30,code=compute_30") add_executable(CudaWithC main.c cuda.cu) if(APPLE) - # We need to add the default path to the driver (libcuda.dylib) as an rpath, so that - # the static cuda runtime can find it at runtime. - target_link_libraries(CudaWithC PRIVATE -Wl,-rpath,/usr/local/cuda/lib) + # Help the static cuda runtime find the driver (libcuda.dyllib) at runtime. + set_property(TARGET CudaWithC PROPERTY BUILD_RPATH ${CMAKE_CUDA_IMPLICIT_LINK_DIRECTORIES}) endif() |