forked from filmicpro/SMBClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSMBClient.podspec
More file actions
34 lines (29 loc) · 1.3 KB
/
SMBClient.podspec
File metadata and controls
34 lines (29 loc) · 1.3 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
#
# 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.9'
s.summary = 'SMBClient is simple SMB client for iOS apps. It allows connecting to SMB devices.'
s.homepage = "https://github.com/woko666/SMBClient"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Seth Faxon' => 'seth@filmicpro.com' }
s.source = { :git => "https://github.com/woko666/SMBClient.git", :tag => "#{s.version}" }
s.ios.deployment_target = '10.0'
s.source_files = ["Sources/**/*.swift", "libdsm/**/*.h", "libdsm/**/*.modulemap"]
# s.xcconfig = {
# 'HEADER_SEARCH_PATHS' => '/Users/sfaxon/src/SMBClient/libdsm/include/bdsm',
# 'SWIFT_INCLUDE_PATHS' => '/Users/sfaxon/src/SMBClient/libdsm'
# }
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