-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathSlauth.podspec
More file actions
19 lines (16 loc) · 819 Bytes
/
Slauth.podspec
File metadata and controls
19 lines (16 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'Slauth'
s.version = '0.7.19'
s.summary = 'A Swift wrapper around Slauth Rust crate'
s.description = <<-DESC
TODO: Add long description of the pod here.
DESC
s.homepage = 'https://github.com/Devolutions/Slauth.git'
s.license = { :type => 'MIT', :file => './LICENSE' }
s.author = { 'Devolutions' => 'lfauvel@devolutions.net' }
s.source = { :git => 'https://github.com/Devolutions/Slauth.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '16.0'
s.source_files = 'wrappers/swift/classes/**/*', 'slauth.h'
s.vendored_libraries = 'target/universal/release/*.a', 'target/x86_64-apple-ios/release/*.a', 'target/aarch64-apple-ios/release/*.a'
end