mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 04:39:00 +08:00
1c00eae503
* opencv: added openvino support * updated version database
26 lines
1.1 KiB
Diff
26 lines
1.1 KiB
Diff
diff --git a/cmake/OpenCVUtils.cmake b/cmake/OpenCVUtils.cmake
|
|
index 437042958e..a90eb5a5ab 100644
|
|
--- a/cmake/OpenCVUtils.cmake
|
|
+++ b/cmake/OpenCVUtils.cmake
|
|
@@ -1632,13 +1632,19 @@ function(ocv_add_external_target name inc link def)
|
|
endif()
|
|
endfunction()
|
|
|
|
+set(__OPENCV_EXPORTED_EXTERNAL_TARGETS "" CACHE INTERNAL "")
|
|
function(ocv_install_used_external_targets)
|
|
if(NOT BUILD_SHARED_LIBS
|
|
AND NOT (CMAKE_VERSION VERSION_LESS "3.13.0") # upgrade CMake: https://gitlab.kitware.com/cmake/cmake/-/merge_requests/2152
|
|
)
|
|
foreach(tgt in ${ARGN})
|
|
if(tgt MATCHES "^ocv\.3rdparty\.")
|
|
- install(TARGETS ${tgt} EXPORT OpenCVModules)
|
|
+ list(FIND __OPENCV_EXPORTED_EXTERNAL_TARGETS "${tgt}" _found)
|
|
+ if(_found EQUAL -1) # don't export target twice
|
|
+ install(TARGETS ${tgt} EXPORT OpenCVModules)
|
|
+ list(APPEND __OPENCV_EXPORTED_EXTERNAL_TARGETS "${tgt}")
|
|
+ set(__OPENCV_EXPORTED_EXTERNAL_TARGETS "${__OPENCV_EXPORTED_EXTERNAL_TARGETS}" CACHE INTERNAL "")
|
|
+ endif()
|
|
endif()
|
|
endforeach()
|
|
endif()
|