-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathOOB.podspec
More file actions
19 lines (19 loc) · 905 Bytes
/
Copy pathOOB.podspec
File metadata and controls
19 lines (19 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'OOB'
s.version = '1.1.1'
s.summary = 'iOS 图像识别,基于 OpenCV 实现。'
s.description = <<-DESC
基于 OpenCV 的图像识别工具类,识别摄像头视频流,视频文件,图片中目标,通过 cocoapods 一键集成,快速使用。
DESC
s.homepage = 'https://github.com/muzipiao'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'lifei' => 'lifei_zdjl@126.com' }
s.source = { :git => 'https://github.com/muzipiao/OOB.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.prefix_header_file = false
s.static_framework = true
s.source_files = 'OOB/Classes/**/*'
s.dependency 'OpenCV2', '~> 4.3.0'
s.frameworks = 'Foundation', 'UIKit', 'AVFoundation'
s.requires_arc = true
end