-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenfec-ios.podspec
More file actions
38 lines (31 loc) · 1.28 KB
/
openfec-ios.podspec
File metadata and controls
38 lines (31 loc) · 1.28 KB
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
34
35
36
37
38
#
# Be sure to run `pod lib lint openfec-ios.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "openfec-ios"
s.version = "0.1.0"
s.summary = "openfec for ios"
s.description = <<-DESC
Forward Erasure Correction Library, build for iOS. See http://openfec.org for Library api
DESC
s.homepage = "https://github.com/petester42/pjsip-ios.git"
s.license = 'MIT'
s.author = { "Aleksey Kurnosov" => "akthesnipe@gmail.com" }
s.source = { :git => "https://github.com/Kurnosov/openfec-ios.git", :tag => s.version.to_s }
s.social_media_url = ''
s.platform = :ios, '8.0'
s.requires_arc = true
s.public_header_files = 'bin/release/include/**'
s.preserve_paths = 'bin/release/include/*{h,hpp}'
s.vendored_libraries = 'bin/release/lib/*.a'
s.header_mappings_dir = 'bin/release'
s.xcconfig = {
'GCC_PREPROCESSOR_DEFINITIONS' => 'PJ_AUTOCONF=1',
'HEADER_SEARCH_PATHS' => '$(inherited) $(PODS_ROOT)/openfec-ios/include'
}
end