mirror of
https://github.com/NVIDIA/cuda-samples.git
synced 2025-04-10 18:22:11 +01:00
67 lines
2.0 KiB
CMake
67 lines
2.0 KiB
CMake
cmake_minimum_required(VERSION 3.20)
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake/Modules")
|
|
|
|
project(histEqualizationNPP LANGUAGES CXX)
|
|
|
|
find_package(CUDAToolkit REQUIRED)
|
|
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
|
|
set(CMAKE_CUDA_ARCHITECTURES 50 52 60 61 70 72 75 80 86 87 89 90 100 101 120)
|
|
set(CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAGS} -Wno-deprecated-gpu-targets")
|
|
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 histEqualizationNPP
|
|
add_executable(histEqualizationNPP histEqualizationNPP.cpp)
|
|
|
|
target_compile_options(histEqualizationNPP PRIVATE $<$<COMPILE_LANGUAGE:CUDA>:--extended-lambda>)
|
|
|
|
target_compile_features(histEqualizationNPP PRIVATE cxx_std_17 cuda_std_17)
|
|
|
|
set_target_properties(histEqualizationNPP PROPERTIES CUDA_SEPARABLE_COMPILATION ON)
|
|
|
|
target_include_directories(histEqualizationNPP PRIVATE
|
|
${CUDAToolkit_INCLUDE_DIRS}
|
|
${FreeImage_INCLUDE_DIRS}
|
|
)
|
|
|
|
target_link_libraries(histEqualizationNPP PRIVATE
|
|
CUDA::nppc
|
|
CUDA::nppisu
|
|
CUDA::nppist
|
|
CUDA::nppicc
|
|
CUDA::cudart
|
|
${FreeImage_LIBRARIES}
|
|
)
|
|
|
|
# Copy data files to output directory
|
|
add_custom_command(TARGET histEqualizationNPP POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../../../Common/data/teapot512.pgm
|
|
${CMAKE_CURRENT_BINARY_DIR}/
|
|
)
|
|
if(WIN32)
|
|
add_custom_command(TARGET histEqualizationNPP
|
|
POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E copy
|
|
${FreeImage_LIBRARY}/../FreeImage.dll
|
|
${CMAKE_CURRENT_BINARY_DIR}/$<CONFIGURATION>
|
|
)
|
|
endif()
|
|
else()
|
|
message(STATUS "FreeImage not found - will not build sample 'histEqualizationNPP'")
|
|
endif()
|