-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [OpenCV4] update to v4.5.5 * [OpenCV] bump version * [gstreamer] fix build for opencv * fix references * [vcpkg-tool-meson] fix nuget packaging * fix references * [gstreamer] fix references * [ogre] update vcpkg tools * fix references * [OpenCV4] fixes from CI runs * fix references * [OpenCV4] force python module also in debug builds * fix references * [harfbuzz] fix cmake config * harfbuzz fixes * fix references * [OpenCV4] remove unnecessary lines from patches * fix references * fix references * [harfbuzz] bump version * [harfbuzz] fix for single config builds * fix references * freetype fixes * fix references * fix ogre references * fix references, again * python when building static windows opencv libraries is unsupported * fix references * fix * refs * use required when necessary * fix references * do not use config for hdf5, use internal module * fix references * use proper spelling for freetype config cmake * fix references * [OpenCV] restore versions after merge * fix references * [leptonica] fix building * fix references * do not require package in optional features * £fix references * fix python feat * update version * update version * [ffmpeg] remove opengl feat on arm64-windows * format manifest * fix references * fix cuda/nvidia features compatibility matrix * fix manifest * fix * fix * fix references * fix references, again * move CONTROL to manifest * [gstreamer] bump versions * fix references Co-authored-by: Lily Wang <[email protected]>
- Loading branch information
Showing
53 changed files
with
433 additions
and
176 deletions.
There are no files selected for viewing
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,7 +1,8 @@ | ||
{ | ||
"name": "cuda", | ||
"version-string": "10.1", | ||
"port-version": 8, | ||
"port-version": 9, | ||
"description": "A parallel computing platform and programming model", | ||
"homepage": "https://developer.nvidia.com/cuda-toolkit" | ||
"homepage": "https://developer.nvidia.com/cuda-toolkit", | ||
"supports": "linux | (!osx & !uwp & !(arm64 & windows))" | ||
} |
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,7 +1,8 @@ | ||
{ | ||
"name": "ffnvcodec", | ||
"version": "11.1.5.0", | ||
"port-version": 1, | ||
"description": "FFmpeg version of Nvidia Codec SDK headers.", | ||
"homepage": "https://github.com/FFmpeg/nv-codec-headers", | ||
"supports": "(windows | linux) & !uwp" | ||
"supports": "linux | (!osx & !uwp & !(arm64 & windows))" | ||
} |
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
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,39 @@ | ||
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt | ||
index e474463..d2b999d 100644 | ||
--- a/src/CMakeLists.txt | ||
+++ b/src/CMakeLists.txt | ||
@@ -14,7 +14,6 @@ if (MSVC) | ||
set_source_files_properties(${src} PROPERTIES LANGUAGE CXX) | ||
endif() | ||
|
||
-string(REPLACE "-O3" "-O2" CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE}") | ||
|
||
add_library (leptonica ${src} ${hdr}) | ||
set_target_properties (leptonica PROPERTIES VERSION ${VERSION_PLAIN}) | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -58,20 +58,19 @@ if(UNIX) | ||
endif() | ||
|
||
if(NOT SW_BUILD) | ||
- find_package(GIF) | ||
- find_package(JPEG) | ||
- find_package(PNG) | ||
- find_package(TIFF) | ||
- find_package(ZLIB) | ||
+ find_package(GIF REQUIRED) | ||
+ find_package(JPEG REQUIRED) | ||
+ find_package(PNG REQUIRED) | ||
+ find_package(TIFF REQUIRED) | ||
+ find_package(ZLIB REQUIRED) | ||
find_package(PkgConfig) | ||
+ find_package(OpenJPEG REQUIRED) | ||
if (PKG_CONFIG_FOUND) | ||
pkg_check_modules(WEBP libwebp QUIET) | ||
pkg_check_modules(WEBPMUX libwebpmux>=${MINIMUM_WEBPMUX_VERSION} QUIET) | ||
- pkg_check_modules(JP2K libopenjp2>=2.0 QUIET) | ||
endif() | ||
if(NOT WEBP) | ||
- find_path(WEBP_INCLUDE_DIR /webp/decode.h) | ||
- find_library(WEBP_LIBRARY NAMES webp) | ||
+ find_package(WebP CONFIG REQUIRED) | ||
if (WEBP_INCLUDE_DIR AND WEBP_LIBRARY) | ||
set(WEBP 1) | ||
set(WEBP_FOUND TRUE) | ||
@@ -213,7 +212,7 @@ include(Configure) | ||
|
||
configure_file(${AUTOCONFIG_SRC} ${AUTOCONFIG} @ONLY) | ||
|
||
-set(INCLUDE_DIR "${CMAKE_INSTALL_PREFIX}/include" "${CMAKE_INSTALL_PREFIX}/include/leptonica") | ||
+set(INCLUDE_DIR "\${CMAKE_CURRENT_LIST_DIR}/../../include" "\${CMAKE_CURRENT_LIST_DIR}/../../include/leptonica") | ||
|
||
############################################################################### | ||
# |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- a/src/CMakeLists.txt | ||
+++ b/src/CMakeLists.txt | ||
@@ -14,7 +14,6 @@ if (MSVC) | ||
set_source_files_properties(${src} PROPERTIES LANGUAGE CXX) | ||
endif() | ||
|
||
-string(REPLACE "-O3" "-O2" CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE}") | ||
|
||
add_library (leptonica ${src} ${hdr}) | ||
set_target_properties (leptonica PROPERTIES VERSION ${VERSION_PLAIN}) | ||
@@ -52,7 +52,7 @@ if (TIFF_LIBRARIES) | ||
endif() | ||
if (WEBP_FOUND) | ||
target_include_directories (leptonica PUBLIC ${WEBP_INCLUDE_DIRS}) | ||
- target_link_libraries (leptonica ${WEBP_LIBRARIES}) | ||
+ target_link_libraries (leptonica WebP::webp WebP::libwebpmux) | ||
endif() | ||
if (ZLIB_LIBRARIES) | ||
target_include_directories (leptonica PUBLIC ${ZLIB_INCLUDE_DIRS}) |
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
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
Oops, something went wrong.