forked from Azure/azure-storage-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAZSClient.podspec
More file actions
16 lines (15 loc) · 763 Bytes
/
AZSClient.podspec
File metadata and controls
16 lines (15 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "AZSClient"
s.version = "0.2.6"
s.summary = "Azure Storage Client Library for iOS."
s.description = <<-DESC "This library is designed to help you build iOS applications that use Microsoft Azure Storage."
DESC
s.homepage = "https://github.com/Azure/azure-storage-ios"
s.license = "MIT"
s.author = "Microsoft Azure Storage"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/Azure/azure-storage-ios.git", :tag => "v#{s.version}" }
s.source_files = "Lib/AzureStorageClientLibrary/AzureStorageClientLibrary/*.{h,m}"
s.ios.library = 'xml2.2'
s.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
end