1 # ----------------------------------------------------------------------------
2 # Uninstall target, for "make uninstall"
3 # ----------------------------------------------------------------------------
5 "${OpenCV_SOURCE_DIR}/cmake/templates/cmake_uninstall.cmake.in"
6 "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake"
9 ADD_CUSTOM_TARGET(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake")
10 if(ENABLE_SOLUTION_FOLDERS)
11 set_target_properties(uninstall PROPERTIES FOLDER "CMakeTargets")
15 # ----------------------------------------------------------------------------
16 # target building all OpenCV modules
17 # ----------------------------------------------------------------------------
18 add_custom_target(opencv_modules)
19 if(ENABLE_SOLUTION_FOLDERS)
20 set_target_properties(opencv_modules PROPERTIES FOLDER "extra")
24 # ----------------------------------------------------------------------------
25 # targets building all tests
26 # ----------------------------------------------------------------------------
28 add_custom_target(opencv_tests)
29 if(ENABLE_SOLUTION_FOLDERS)
30 set_target_properties(opencv_tests PROPERTIES FOLDER "extra")
34 add_custom_target(opencv_perf_tests)
35 if(ENABLE_SOLUTION_FOLDERS)
36 set_target_properties(opencv_perf_tests PROPERTIES FOLDER "extra")