forked from NordicSemiconductor/IOS-nRF-Mesh-Library
-
Notifications
You must be signed in to change notification settings - Fork 1
/
nRFMeshProvision.podspec
executable file
·29 lines (28 loc) · 1.39 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
29
#
# 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 = '1.0.4'
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.
This Library is under extensive development and will have missing features and capabilities that are going to be added in the near future.
DESC
s.homepage = 'https://github.com/NordicSemiconductor/IOS-nRF-Mesh-Library'
s.license = { :type => 'BSD-3-Clause', :file => 'LICENSE' }
s.author = { 'mostafaberg' => '[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 = '4'
s.ios.deployment_target = '10.0'
s.source_files = 'nRFMeshProvision/Classes/**/*'
s.dependency 'OpenSSL-Universal'
s.frameworks = 'CoreBluetooth'
end