forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[opencv] update to 4.9 (microsoft#38928)
Co-authored-by: Howard Su <[email protected]> Co-authored-by: Nick Logozzo <[email protected]> Co-authored-by: sidy3d <[email protected]> Co-authored-by: c8ef <[email protected]> Co-authored-by: autoantwort <[email protected]> Co-authored-by: jim wang <[email protected]> Co-authored-by: Lily Wang <[email protected]> Co-authored-by: Lily Wang <[email protected]> Co-authored-by: Matthias Kuhn <[email protected]> Co-authored-by: Mark Harmstone <[email protected]> Co-authored-by: Kai Pastor <[email protected]> Co-authored-by: Alexandre Bique <[email protected]> Co-authored-by: Peter Adam Korodi <[email protected]> Co-authored-by: Jakub Melka <[email protected]> Co-authored-by: LE GARREC Vincent <[email protected]> Co-authored-by: Josh Harris <[email protected]> Co-authored-by: Theodore Tsirpanis <[email protected]> Co-authored-by: Kaoru <[email protected]> Co-authored-by: Javier Matos Denizac <[email protected]> Co-authored-by: Javier Matos <[email protected]> Co-authored-by: Pravila <[email protected]> Co-authored-by: JacobBarthelmeh <[email protected]> Co-authored-by: myd7349 <[email protected]> Co-authored-by: Billy O'Neal <[email protected]> Co-authored-by: Frank <[email protected]> Co-authored-by: Cheney Wang <[email protected]> Co-authored-by: 王太阳 <[email protected]> Co-authored-by: 王方凯 <[email protected]> Co-authored-by: Chuck Walbourn <[email protected]> Co-authored-by: Jaap Aarts <[email protected]>
- Loading branch information
1 parent
9dc5f80
commit ca1501f
Showing
64 changed files
with
1,352 additions
and
1,227 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
SET(VCPKG_POLICY_EMPTY_PACKAGE enabled) | ||
|
||
file(INSTALL "${CURRENT_INSTALLED_DIR}/share/opencv4/OpenCVConfig.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}") | ||
file(INSTALL "${CURRENT_INSTALLED_DIR}/share/opencv4/OpenCVConfig-version.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}") | ||
file(INSTALL "${CURRENT_INSTALLED_DIR}/share/opencv4/OpenCVModules.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}") | ||
file(INSTALL "${CURRENT_INSTALLED_DIR}/share/opencv4/OpenCVModules-release.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}") | ||
if (NOT VCPKG_BUILD_TYPE) | ||
file(INSTALL "${CURRENT_INSTALLED_DIR}/share/opencv4/OpenCVModules-debug.cmake" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}") | ||
endif() | ||
set(USE_OPENCV_VERSION "4") | ||
configure_file("${CURRENT_PORT_DIR}/vcpkg-cmake-wrapper.cmake.in" "${CURRENT_PACKAGES_DIR}/share/opencv/vcpkg-cmake-wrapper.cmake" @ONLY) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
set(OpenCV_DIR "${CMAKE_CURRENT_LIST_DIR}/../opencv@USE_OPENCV_VERSION@/" CACHE PATH "Path to OpenCVConfig.cmake" FORCE) | ||
set(OpenCV_ROOT "${CMAKE_CURRENT_LIST_DIR}/../opencv@USE_OPENCV_VERSION@/") | ||
_find_package(${ARGS}) |
Oops, something went wrong.