-
Notifications
You must be signed in to change notification settings - Fork 1
/
DepthCamera.podspec
22 lines (18 loc) · 1009 Bytes
/
DepthCamera.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'DepthCamera'
s.version = '1.2.9'
s.summary = 'Basic DepthCamera to obtain and render Depth Imagery'
s.description = <<-DESC
Camera that displays Depth Imagery for the user. Can choose between original image and the blended image with the mask from the depth image. Basic usage - only photos currently. Plan on adding Video Usage that is depth based as well as normal imagery.
DESC
s.homepage = 'https://github.com/Evilsmaher/DepthCamera'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Evilsmaher' => '[email protected]' }
s.source = { :git => 'https://github.com/Evilsmaher/DepthCamera.git', :tag => s.version.to_s }
s.ios.deployment_target = '12.0'
s.swift_version = '5.0'
s.source_files = ["Camera/**/*.{swift,metal}"]
s.exclude_files = "Camera/*.plist"
s.resources = ["Camera/*/**/*.storyboard"]
s.platform = :ios, '12.0'
end