You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
481 B
16 lines
481 B
cmake_minimum_required(VERSION 3.17)
|
|
project(SharedRuntimeViaCUDAFlags NONE)
|
|
|
|
set(CMAKE_CUDA_FLAGS "")
|
|
string(APPEND CMAKE_CUDA_FLAGS "-cudart shared")
|
|
|
|
enable_language(CUDA)
|
|
|
|
add_executable(CudaOnlySharedRuntimeViaCUDAFlags main.cu)
|
|
|
|
if(UNIX)
|
|
# Help the shared cuda runtime find libcudart as it is not located
|
|
# in a default system searched location
|
|
set_property(TARGET CudaOnlySharedRuntimeViaCUDAFlags PROPERTY BUILD_RPATH ${CMAKE_CUDA_IMPLICIT_LINK_DIRECTORIES})
|
|
endif()
|