-
-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathMetalBender.podspec
More file actions
15 lines (15 loc) · 783 Bytes
/
MetalBender.podspec
File metadata and controls
15 lines (15 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = "MetalBender"
s.version = "0.5.0"
s.summary = "Bender is an abstraction layer over MetalPerformanceShaders useful for working with neural networks."
s.homepage = "https://github.com/xmartlabs/Bender"
s.license = { type: 'MIT', file: 'LICENSE' }
s.author = { "Xmartlabs SRL" => "swift@xmartlabs.com" }
s.source = { git: "https://github.com/xmartlabs/Bender.git", tag: s.version.to_s }
s.social_media_url = 'https://twitter.com/xmartlabs'
s.ios.deployment_target = '10.0'
s.requires_arc = true
s.ios.source_files = 'Sources/**/*.{swift,metal}', 'Sources/Headers/*.h'
s.dependency 'SwiftProtobuf', '1.0.0'
s.dependency 'MetalPerformanceShadersProxy', '0.3.0'
end