summaryrefslogtreecommitdiffstats
path: root/Tests/Cuda/WithC/CMakeLists.txt
blob: cc5fa0c2da44b28cd74cd2db509535e746c6eeb2 (plain)
1
2
3
4
5
6
7
8
9
cmake_minimum_required(VERSION 3.18)
project(WithC CUDA C)

add_executable(CudaWithC main.c cuda.cu)

if(APPLE)
  # 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()