-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMach1SpatialAPI.podspec
executable file
·38 lines (30 loc) · 1.69 KB
/
Mach1SpatialAPI.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
31
32
33
34
35
36
37
38
Pod::Spec.new do |s|
s.name = 'Mach1SpatialAPI'
s.version = '0.2.0'
s.summary = 'Mach1 Spatial APIs for Swift'
s.description = <<-DESC
Mach1 Spatial APIs are all contained in this pod which includes:
[Mach1EncodeCAPI, Mach1DecodeCAPI, Mach1DecodePositionalCAPI, Mach1TranscodeCAPI]
DESC
s.homepage = 'http://dev.mach1.tech'
s.license = { :type => 'Commercial', :file => 'LICENSE.txt' }
s.author = { 'Mach1' => 'https://www.mach1.tech' }
s.documentation_url = 'https://dev.mach1.tech'
s.source = { :git => 'https://github.com/Mach1Studios/Pod-Mach1SpatialAPI.git', :tag => s.version.to_s }
s.platform = :ios, "9.3", :osx, "10.10", :tvos, :watchos, :visionos
s.swift_version = "5.0"
s.source_files = 'Mach1SpatialAPI/Classes/*.{h,swift}'
s.public_header_files = 'Mach1SpatialAPI/Classes/*.h'
s.ios.vendored_libraries = 'Mach1SpatialAPI/Lib/ios/*.a'
s.ios.libraries = 'c++'
s.osx.vendored_libraries = 'Mach1SpatialAPI/Lib/osx/*.a'
s.osx.libraries = 'c++'
s.macos.vendored_libraries = 'Mach1SpatialAPI/Lib/osx/*.a'
s.macos.libraries = 'c++'
s.tvos.vendored_libraries = 'Mach1SpatialAPI/Lib/tvos/*.a'
s.tvos.libraries = 'c++'
s.watchos.vendored_libraries = 'Mach1SpatialAPI/Lib/watchos/*.a'
s.watchos.libraries = 'c++'
s.visionos.vendored_frameworks = 'Mach1SpatialAPI/Lib/xros/*.xcframework'
s.visionos.libraries = 'c++'
end