Library samples: Fix malformed CMakeLists.txt

This commit is contained in:
Rob Armstrong 2025-02-04 09:48:40 -08:00
parent 30b411ad56
commit e3a5ae4aca
2 changed files with 21 additions and 20 deletions

View File

@ -8,7 +8,7 @@ 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_ARCHITECTURES all-major)
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
# set(CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAGS} -G") # enable cuda-gdb (expensive)
endif()
@ -44,9 +44,6 @@ target_compile_features(freeImageInteropNPP PRIVATE cxx_std_17 cuda_std_17)
CUDA::cudart
${FreeImage_LIBRARIES}
)
else()
message(STATUS "FreeImage not found - will not build sample 'freeImageInteropNPP'")
endif()
# Copy data files to output directory
add_custom_command(TARGET freeImageInteropNPP POST_BUILD
@ -54,3 +51,6 @@ add_custom_command(TARGET freeImageInteropNPP POST_BUILD
${CMAKE_CURRENT_SOURCE_DIR}/../../../Common/data/teapot512.pgm
${CMAKE_CURRENT_BINARY_DIR}/
)
else()
message(STATUS "FreeImage not found - will not build sample 'freeImageInteropNPP'")
endif()

View File

@ -8,7 +8,7 @@ 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_ARCHITECTURES all-major)
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
# set(CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAGS} -G") # enable cuda-gdb (expensive)
endif()
@ -45,9 +45,6 @@ target_compile_features(histEqualizationNPP PRIVATE cxx_std_17 cuda_std_17)
CUDA::cudart
${FreeImage_LIBRARIES}
)
else()
message(STATUS "FreeImage not found - will not build sample 'histEqualizationNPP'")
endif()
# Copy data files to output directory
add_custom_command(TARGET histEqualizationNPP POST_BUILD
@ -55,3 +52,7 @@ add_custom_command(TARGET histEqualizationNPP POST_BUILD
${CMAKE_CURRENT_SOURCE_DIR}/../../../Common/data/teapot512.pgm
${CMAKE_CURRENT_BINARY_DIR}/
)
else()
message(STATUS "FreeImage not found - will not build sample 'histEqualizationNPP'")
endif()