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