mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2025-04-19 06:20:50 +01:00
13 lines
330 B
CMake
13 lines
330 B
CMake
# Include directories and libraries
|
|
include_directories(../../../Common)
|
|
|
|
# Source file
|
|
set(SRC_FILES
|
|
fastWalshTransform.cu
|
|
fastWalshTransform_gold.cpp
|
|
)
|
|
|
|
# Add target for fastWalshTransform
|
|
add_executable(fastWalshTransform ${SRC_FILES})
|
|
set_target_properties(fastWalshTransform PROPERTIES CUDA_SEPARABLE_COMPILATION ON)
|