-
Notifications
You must be signed in to change notification settings - Fork 12
/
VirgilCryptoPythia.podspec
20 lines (20 loc) · 1.17 KB
/
VirgilCryptoPythia.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "VirgilCryptoPythia"
s.version = "0.17.1"
s.swift_version = "5.0"
s.license = { :type => "BSD", :file => "LICENSE" }
s.summary = "Contains swift classes working with Pythia crypto."
s.homepage = "https://github.com/VirgilSecurity/virgil-crypto-c"
s.authors = { "Virgil Security" => "https://virgilsecurity.com/" }
s.source = { :git => "https://github.com/VirgilSecurity/virgil-crypto-c.git", :tag => "v" + s.version.to_s }
s.ios.deployment_target = "11.0"
s.osx.deployment_target = "10.13"
s.tvos.deployment_target = "11.0"
s.watchos.deployment_target = "4.0"
s.public_header_files = "wrappers/swift/VirgilCrypto/VirgilCryptoPythia/VirgilCryptoPythia.h"
s.source_files = "wrappers/swift/VirgilCrypto/VirgilCryptoPythia/**/*.{h,mm,swift}"
s.dependency "VirgilCryptoFoundation", "= 0.17.1"
s.dependency "VSCCrypto/Common", "= 0.17.1"
s.dependency "VSCCrypto/Foundation", "= 0.17.1"
s.dependency "VSCCrypto/Pythia", "= 0.17.1"
end