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