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