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