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