Merge pull request #20 from XSShawnZeng/master

Turn on assert log for SimpleAssert and copy files to folder of executable for watershedSegmentationNPP
This commit is contained in:
Rob Armstrong 2025-02-10 08:06:33 -08:00 committed by GitHub
commit 9582bb03a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 3 deletions

View File

@ -14,6 +14,9 @@ if(CMAKE_BUILD_TYPE STREQUAL "Debug")
# set(CMAKE_CUDA_FLAGS "${CMAKE_CUDA_FLAGS} -G") # enable cuda-gdb (expensive)
endif()
# Removes -DNDEBUG For Print specific logs in this sample.
string(REPLACE "-DNDEBUG" "" CMAKE_CUDA_FLAGS_RELEASE "${CMAKE_CUDA_FLAGS_RELEASE}")
# Include directories and libraries
include_directories(../../../Common)

View File

@ -41,19 +41,19 @@ target_link_libraries(watershedSegmentationNPP PRIVATE
add_custom_command(TARGET watershedSegmentationNPP POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different
${CMAKE_CURRENT_SOURCE_DIR}/../../../Common/data/teapot_512x512_8u_Gray.raw
${CMAKE_CURRENT_BINARY_DIR}/
$<TARGET_FILE_DIR:watershedSegmentationNPP>/
)
# Copy data files to output directory
add_custom_command(TARGET watershedSegmentationNPP POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different
${CMAKE_CURRENT_SOURCE_DIR}/../../../Common/data/CT_skull_512x512_8u_Gray.raw
${CMAKE_CURRENT_BINARY_DIR}/
$<TARGET_FILE_DIR:watershedSegmentationNPP>/
)
# Copy data files to output directory
add_custom_command(TARGET watershedSegmentationNPP POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different
${CMAKE_CURRENT_SOURCE_DIR}/../../../Common/data/Rocks_512x512_8u_Gray.raw
${CMAKE_CURRENT_BINARY_DIR}/
$<TARGET_FILE_DIR:watershedSegmentationNPP>/
)