mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2025-04-24 00:31:23 +01:00
12 lines
314 B
CMake
12 lines
314 B
CMake
# Include directories and libraries
|
|
include_directories(../../../Common)
|
|
|
|
# Source file
|
|
set(SRC_FILES
|
|
globalToShmemAsyncCopy.cu
|
|
)
|
|
|
|
# Add target for globalToShmemAsyncCopy
|
|
add_executable(globalToShmemAsyncCopy ${SRC_FILES})
|
|
set_target_properties(globalToShmemAsyncCopy PROPERTIES CUDA_SEPARABLE_COMPILATION ON)
|