forked from BohdanNikoletti/SFaceCompare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SFaceCompare.podspec
23 lines (22 loc) · 1.08 KB
/
SFaceCompare.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'SFaceCompare'
s.version = '3.1.1'
s.summary = 'Simple lib fro iOS to find and compare faces.'
s.requires_arc = true
s.static_framework = true
s.swift_versions = '5.0'
s.description = <<-DESC
SFaceCompare is an simple libray for iOS to find and compare faces. SFaceCompare works on top of dlib and OpenCV libraries.
With usage of trained model.
DESC
s.homepage = 'https://github.com/BohdanNikoletti/SFaceCompare'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Bohdan Mihiliev' => '[email protected]' }
s.source = { :git => 'https://github.com/BohdanNikoletti/SFaceCompare.git', :tag => s.version.to_s }
s.pod_target_xcconfig = { 'VALID_ARCHS' => 'x86_64 armv7 arm64' }
s.ios.deployment_target = '12.0'
s.preserve_paths = 'SFaceCompare/SameFace.framework'
s.xcconfig = { 'OTHER_LDFLAGS' => '-framework SameFace' }
s.source_files = 'SFaceCompare/Classes/**/*'
s.vendored_frameworks = 'SFaceCompare/SameFace.framework'
end