-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathSMBClient.podspec
27 lines (26 loc) · 1.06 KB
/
SMBClient.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
#
# Be sure to run `pod lib lint SMBClient.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 = 'SMBClient'
s.version = '0.0.10'
s.summary = 'SMBClient is simple SMB client for iOS apps. It allows connecting to SMB devices.'
s.homepage = "https://github.com/filmicpro/SMBClient"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Seth Faxon' => '[email protected]' }
s.source = { :git => "https://github.com/filmicpro/SMBClient.git", :tag => "#{s.version}" }
s.ios.deployment_target = '10.0'
s.swift_version = '4.0'
s.source_files = ["Sources/**/*.swift", "libdsm/**/*.h"]
s.xcconfig = {
'HEADER_SEARCH_PATHS' => '$(PODS_TARGET_SRCROOT)/libdsm/include/bdsm',
'SWIFT_INCLUDE_PATHS' => '$(PODS_TARGET_SRCROOT)/libdsm'
}
s.preserve_paths = 'libdsm/*'
s.vendored_libraries = 'libdsm/libdsm.a', 'libdsm/libtasn1.a'
s.library = 'iconv'
end