29 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(the_target "example_gpu_performance")
 | |
| 
 | |
| file(GLOB sources "performance/*.cpp")
 | |
| file(GLOB headers "performance/*.h")
 | |
| 
 | |
| add_executable(${the_target} ${sources} ${headers})
 | |
| 
 | |
| set_target_properties(${the_target} PROPERTIES
 | |
|     OUTPUT_NAME "performance_gpu"
 | |
|     PROJECT_LABEL "(EXAMPLE_GPU) performance")
 | |
|     
 | |
| add_dependencies(${the_target} opencv_core opencv_flann opencv_imgproc opencv_highgui
 | |
|     opencv_ml opencv_video opencv_objdetect opencv_features2d
 | |
|     opencv_calib3d opencv_legacy opencv_contrib opencv_gpu)
 | |
|     
 | |
| target_link_libraries(${the_target} ${OPENCV_LINKER_LIBS} opencv_core
 | |
|     opencv_flann opencv_imgproc opencv_highgui opencv_ml opencv_video opencv_objdetect
 | |
|     opencv_features2d opencv_calib3d opencv_legacy opencv_contrib opencv_gpu)
 | |
| 
 | |
| if(WIN32)
 | |
|     install(TARGETS ${the_target} RUNTIME DESTINATION "samples/gpu" COMPONENT main)
 | |
| endif()
 | |
| 
 | |
| if(NOT WIN32)
 | |
|     file(GLOB GPU_FILES performance/*.cpp performance/*.h)
 | |
|     install(FILES ${GPU_FILES}
 | |
|             DESTINATION share/opencv/samples/gpu/performance
 | |
|             PERMISSIONS OWNER_READ GROUP_READ WORLD_READ)
 | |
| endif() | 
