forked from fritzlabs/fritz-ai-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFritzVisionRigidPose.podspec
30 lines (21 loc) · 1.03 KB
/
FritzVisionRigidPose.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Pod::Spec.new do |s|
s.name = 'FritzVisionRigidPose'
s.version = '7.0.1'
s.summary = 'Official Fritz SDK for Swift 5.1 and Objective-C'
s.homepage = 'https://www.fritz.ai'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE.md' }
s.author = { 'Jameson Toole' => '[email protected]' }
s.source = {:git => 'https://github.com/fritzlabs/fritz-ai-ios-sdk.git', :tag => s.version.to_s }
s.requires_arc = true
s.static_framework = true
s.frameworks = 'Foundation', 'UIKit', 'AVFoundation', 'Accelerate', 'CoreImage', 'VideoToolbox'
s.weak_frameworks = 'CoreML', 'Vision'
s.dependency 'FritzVision'
s.dependency 'OpenCV'
s.ios.deployment_target = '12.0'
s.swift_version = '5.1'
s.source_files = 'Source/FritzVisionRigidPose/**/*.{h,swift,mlmodel,mm}'
s.pod_target_xcconfig = { 'COREML_CODEGEN_LANGUAGE' => 'Swift', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.prefix_header_file = 'Source/FritzVisionRigidPose/PrefixHeader.pch'
end