blob: cc5fa0c2da44b28cd74cd2db509535e746c6eeb2 [file] [log] [blame]
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()