mirror of
				https://github.com/NVIDIA/cuda-samples.git
				synced 2025-11-04 15:47:50 +08:00 
			
		
		
		
	Turn on assert log for SimpleAssert and copy files to folder of executable for watershedSegmentationNPP
This commit is contained in:
		
							parent
							
								
									95308ffc23
								
							
						
					
					
						commit
						11bc856cad
					
				@ -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)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -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>/
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user