cmake/Tests/Cuda/WithC/CMakeLists.txt
2021-09-14 00:13:48 +02:00

10 lines
292 B
CMake

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()