forked from NordicSemiconductor/IOS-nRF-Mesh-Library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnRFMeshProvision.podspec
executable file
·28 lines (27 loc) · 1.29 KB
/
nRFMeshProvision.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
#
# Be sure to run `pod lib lint nRFMeshProvision.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'nRFMeshProvision'
s.version = '2.2.1'
s.summary = 'A Bluetooth Mesh library'
s.description = <<-DESC
nRF Mesh is a Bluetooth Mesh compliant library that has many features such as provisioning, configuration and control of Bluetooth Mesh compliant nodes.
DESC
s.homepage = 'https://github.com/NordicSemiconductor/IOS-nRF-Mesh-Library'
s.license = { :type => 'BSD-3-Clause', :file => 'LICENSE' }
s.author = { 'Aleksander Nowakowski' => '[email protected]' }
s.source = { :git => 'https://github.com/NordicSemiconductor/IOS-nRF-Mesh-Library.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/nordictweets'
s.platform = :ios
s.static_framework = true
s.swift_version = '5.1'
s.ios.deployment_target = '10.0'
s.source_files = 'nRFMeshProvision/Classes/**/*'
s.dependency 'OpenSSL-Universal', '= 1.0.2.19'
s.frameworks = 'CoreBluetooth'
end