-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebpagePersistentStorage.podspec
More file actions
21 lines (19 loc) · 1.07 KB
/
Copy pathWebpagePersistentStorage.podspec
File metadata and controls
21 lines (19 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'WebpagePersistentStorage'
s.version = '0.0.6'
s.license = ''
s.summary = 'Webpage persistent storage SDK for iOS'
s.homepage = 'https://github.com/sredko/WebpagePersistentStorage'
s.authors = { 'Serhiy Redko' => 'serhiy.redko@gmail.com' }
s.source = { :git => 'https://github.com/sredko/WebpagePersistentStorage.git', :tag => s.version }
s.ios.deployment_target = '9.0'
s.requires_arc = true
s.source_files = 'WebpagePersistentStorage/Source/**/*.{h,swift}'
s.preserve_paths = 'Modules/libxml2/*', 'Modules/CommonCrypto/*'
s.xcconfig = {
'SWIFT_INCLUDE_PATHS[sdk=iphoneos*]' => '$(SRCROOT)/WebpagePersistentStorage/Modules/libxml2/iphoneos $(SRCROOT)/WebpagePersistentStorage/Modules/CommonCrypto/iphoneos',
'SWIFT_INCLUDE_PATHS[sdk=iphonesimulator*]' => '$(SRCROOT)/WebpagePersistentStorage/Modules/libxml2/iphonesimulator $(SRCROOT)/WebpagePersistentStorage/Modules/CommonCrypto/iphonesimulator',
'HEADER_SEARCH_PATHS' => '$(inherited) $(SDKROOT)/usr/include/libxml2',
'OTHER_LDFLAGS' => '$(inherited) -lxml2'
}
end