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