 2bbda9d225
			
		
	
	2bbda9d225
	
	
	
		
			
			Conflicts: modules/cudaimgproc/test/test_color.cpp modules/dynamicuda/include/opencv2/dynamicuda/dynamicuda.hpp modules/gpu/perf/perf_imgproc.cpp modules/gpu/src/imgproc.cpp modules/gpu/test/test_core.cpp modules/gpu/test/test_imgproc.cpp modules/java/generator/src/cpp/VideoCapture.cpp samples/gpu/performance/CMakeLists.txt samples/tapi/CMakeLists.txt
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(the_target "example_gpu_performance")
 | |
| 
 | |
| file(GLOB sources "performance/*.cpp")
 | |
| file(GLOB headers "performance/*.h")
 | |
| 
 | |
| if(HAVE_opencv_nonfree)
 | |
|   ocv_include_directories("${OpenCV_SOURCE_DIR}/modules/nonfree/include")
 | |
| endif()
 | |
| 
 | |
| add_executable(${the_target} ${sources} ${headers})
 | |
| target_link_libraries(${the_target} ${OPENCV_LINKER_LIBS} ${OPENCV_CUDA_SAMPLES_REQUIRED_DEPS})
 | |
| 
 | |
| if(HAVE_opencv_nonfree)
 | |
|   target_link_libraries(${the_target} opencv_nonfree)
 | |
| endif()
 | |
| 
 | |
| set_target_properties(${the_target} PROPERTIES
 | |
|     OUTPUT_NAME "performance_gpu"
 | |
|     PROJECT_LABEL "(EXAMPLE_CUDA) performance")
 | |
| 
 | |
| if(ENABLE_SOLUTION_FOLDERS)
 | |
|   set_target_properties(${the_target} PROPERTIES FOLDER "samples//gpu")
 | |
| endif()
 | |
| 
 | |
| if(WIN32)
 | |
|   install(TARGETS ${the_target} RUNTIME DESTINATION "${OPENCV_SAMPLES_BIN_INSTALL_PATH}/gpu" COMPONENT samples)
 | |
| endif()
 | |
| 
 | |
| if(INSTALL_C_EXAMPLES AND NOT WIN32)
 | |
|   file(GLOB CUDA_FILES performance/*.cpp performance/*.h)
 | |
|   install(FILES ${CUDA_FILES}
 | |
|           DESTINATION ${OPENCV_SAMPLES_SRC_INSTALL_PATH}/gpu/performance
 | |
|           PERMISSIONS OWNER_READ GROUP_READ WORLD_READ
 | |
|           COMPONENT samples)
 | |
| endif()
 |