mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2025-04-26 09:41:37 +01:00
16 lines
356 B
CMake
16 lines
356 B
CMake
# Include directories and libraries
|
|
include_directories(../../../Common)
|
|
|
|
# Source file
|
|
set(SRC_FILES
|
|
simpleCUFFT_MGPU.cu
|
|
)
|
|
|
|
# Add target for simpleCUFFT_MGPU
|
|
add_executable(simpleCUFFT_MGPU ${SRC_FILES})
|
|
set_target_properties(simpleCUFFT_MGPU PROPERTIES CUDA_SEPARABLE_COMPILATION ON)
|
|
|
|
target_link_libraries(simpleCUFFT_MGPU PRIVATE
|
|
CUDA::cufft
|
|
)
|