forked from jedisct1/swift-sodium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSessionSodium.podspec
33 lines (26 loc) · 1.06 KB
/
SessionSodium.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
# Requires CocoaPods 1.10.0
Pod::Spec.new do |s|
s.name = 'SessionSodium'
s.version = '0.9.1'
s.swift_version = '5.0'
s.license = { :type => "ISC", :file => 'LICENSE' }
s.summary = 'Swift-Sodium provides a safe and easy to use interface to perform common cryptographic operations on iOS and OSX.'
s.homepage = 'https://github.com/loki-project/session-ios-swift-sodium'
s.social_media_url = 'https://twitter.com/jedisct1'
s.authors = { 'Frank Denis' => '' }
s.source = { :git => 'https://github.com/loki-project/session-ios-swift-sodium.git',
:tag => '0.9.1' }
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.watchos.deployment_target = '5.0'
s.source_files = 'Sodium/**/*.{swift,h}'
s.private_header_files = 'Sodium/libsodium/*.h'
s.pod_target_xcconfig = {
'SWIFT_INCLUDE_PATHS' => '$(inherited) "${PODS_XCFRAMEWORKS_BUILD_DIR}/Clibsodium"'
}
s.user_target_xcconfig = {
'SWIFT_INCLUDE_PATHS' => '$(inherited) "${PODS_XCFRAMEWORKS_BUILD_DIR}/Clibsodium"'
}
s.requires_arc = true
s.vendored_frameworks = 'Clibsodium.xcframework'
end