e904b667c6
PaddleOCR PR Tests GPU / test-pr-gpu (push) Blocked by required conditions
PaddleOCR PR Tests / test-pr (push) Blocked by required conditions
PaddleOCR PR Tests / test-pr-python (3.8) (push) Waiting to run
Build/Publish Develop Docs / deploy (push) Failing after 1s
PaddleOCR Code Style Check / check-code-style (push) Failing after 1s
PaddleOCR PR Tests GPU / detect-changes (push) Failing after 1s
PaddleOCR PR Tests GPU / test-pr-gpu-impl (push) Waiting to run
PaddleOCR PR Tests / detect-changes (push) Failing after 1s
PaddleOCR PR Tests / test-pr-python (3.13) (push) Waiting to run
PaddleOCR PR Tests / test-pr-python (3.9) (push) Waiting to run
31 lines
1018 B
Ruby
31 lines
1018 B
Ruby
platform :ios, '16.0'
|
|
|
|
target 'PaddleOCRDemo' do
|
|
use_frameworks!
|
|
|
|
# ONNX Runtime with ObjC API — includes Core ML EP + XNNPACK EP pre-built
|
|
pod 'onnxruntime-objc', '~> 1.24'
|
|
|
|
# YAML parsing for model config files
|
|
pod 'Yams', '~> 5.0'
|
|
|
|
# OpenCV (imgproc): preprocessing resize/pad, recognition resize, quad crop, DB contours — see OpenCV*Bridge.
|
|
pod 'OpenCV', '~> 4.3.0'
|
|
|
|
# Unit tests `@testable import PaddleOCRDemo` need the same Swift / header search paths
|
|
# as the app without duplicating pod linkage.
|
|
target 'PaddleOCRDemoTests' do
|
|
inherit! :search_paths
|
|
end
|
|
end
|
|
|
|
# onnxruntime-objc ships headers that use #include "..." inside framework headers; newer Xcode
|
|
# treats that as an error (CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER). Allow Pods to build.
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER'] = 'NO'
|
|
end
|
|
end
|
|
end
|