mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2025-04-24 08:41:23 +01:00
48 lines
1.3 KiB
CMake
48 lines
1.3 KiB
CMake
cmake_minimum_required(VERSION 3.20)
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/Modules")
|
|
|
|
project(freeImageInteropNPP LANGUAGES CXX)
|
|
|
|
find_package(CUDAToolkit REQUIRED)
|
|
|
|
set(CMAKE_CUDA_ARCHITECTURES 50 52 60 61 70 75 80 86 89 90)
|
|
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
# set(CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAGS} -G") # enable cuda-gdb (expensive)
|
|
endif()
|
|
|
|
# Include directories and libraries
|
|
include_directories(
|
|
../../../Common
|
|
../../../Common/UtilNPP
|
|
)
|
|
|
|
# Source file
|
|
find_package(FreeImage)
|
|
|
|
if(${FreeImage_FOUND})
|
|
# Add target for freeImageInteropNPP
|
|
add_executable(freeImageInteropNPP freeImageInteropNPP.cpp)
|
|
|
|
target_compile_options(freeImageInteropNPP PRIVATE $<$<COMPILE_LANGUAGE:CUDA>:--extended-lambda>)
|
|
|
|
target_compile_features(freeImageInteropNPP PRIVATE cxx_std_17 cuda_std_17)
|
|
|
|
set_target_properties(freeImageInteropNPP PROPERTIES CUDA_SEPARABLE_COMPILATION ON)
|
|
|
|
target_include_directories(freeImageInteropNPP PRIVATE
|
|
${CUDAToolkit_INCLUDE_DIRS}
|
|
${FreeImage_INCLUDE_DIRS}
|
|
)
|
|
|
|
target_link_libraries(freeImageInteropNPP PRIVATE
|
|
CUDA::nppc
|
|
CUDA::nppisu
|
|
CUDA::nppif
|
|
CUDA::cudart
|
|
${FreeImage_LIBRARIES}
|
|
)
|
|
else()
|
|
message(STATUS "FreeImage not found - will not build sample 'freeImageInteropNPP'")
|
|
endif()
|