mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2025-10-14 08:58:57 +08:00
40 lines
1.3 KiB
CMake
40 lines
1.3 KiB
CMake
cmake_minimum_required(VERSION 3.20)
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake/Modules")
|
|
|
|
project(simpleCUFFT_MGPU LANGUAGES CUDA)
|
|
|
|
# Disable response file for libraries on QNX as qcc does not support lib paths with double quotes
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "QNX")
|
|
set(CMAKE_CUDA_USE_RESPONSE_FILE_FOR_LIBRARIES OFF)
|
|
endif()
|
|
|
|
find_package(CUDAToolkit REQUIRED)
|
|
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
|
|
set(CMAKE_CUDA_ARCHITECTURES 75 80 86 87 89 90 100 110 120)
|
|
set(CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAGS} -Wno-deprecated-gpu-targets")
|
|
if(ENABLE_CUDA_DEBUG)
|
|
set(CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAGS} -G") # enable cuda-gdb (may significantly affect performance on some targets)
|
|
else()
|
|
set(CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAGS} -lineinfo") # add line information to all builds for debug tools (exclusive to -G option)
|
|
endif()
|
|
|
|
# Include directories and libraries
|
|
include_directories(../../../Common)
|
|
|
|
# Source file
|
|
# Add target for simpleCUFFT_MGPU
|
|
add_executable(simpleCUFFT_MGPU simpleCUFFT_MGPU.cu)
|
|
|
|
target_compile_options(simpleCUFFT_MGPU PRIVATE $<$<COMPILE_LANGUAGE:CUDA>:--extended-lambda>)
|
|
|
|
target_compile_features(simpleCUFFT_MGPU PRIVATE cxx_std_17 cuda_std_17)
|
|
|
|
set_target_properties(simpleCUFFT_MGPU PROPERTIES CUDA_SEPARABLE_COMPILATION ON)
|
|
|
|
target_link_libraries(simpleCUFFT_MGPU PRIVATE
|
|
CUDA::cufft
|
|
)
|