forked from Evernote/evernote-cloud-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevernote-cloud-sdk-ios.podspec
More file actions
21 lines (19 loc) · 1.01 KB
/
evernote-cloud-sdk-ios.podspec
File metadata and controls
21 lines (19 loc) · 1.01 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 |spec|
spec.name = "evernote-cloud-sdk-ios"
spec.version = "2.0.3"
spec.summary = "Evernote Cloud SDK for iOS."
spec.homepage = "https://github.com/evernote/evernote-cloud-sdk-ios"
spec.license = ' https://github.com/evernote/evernote-cloud-sdk-ios/blob/master/LICENSE'
spec.authors = { 'Evernote' => '[email protected]' }
spec.source = { :git => "https://github.com/evernote/evernote-cloud-sdk-ios.git", :tag => "2.0.3"}
spec.ios.deployment_target = "7.0"
spec.xcconfig = {'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2'}
spec.public_header_files = "evernote-sdk-ios/ENSDK/SendToEvernoteActivity/ENSaveToEvernoteActivity.h",
spec.header_mappings_dir = "evernote-sdk-ios/",
spec.source_files = "evernote-sdk-ios/**/*.{h,m}",
spec.exclude_files = "evernote-sdk-ios/evernote-sdk-ios-Prefix.pch",
spec.resource = "ENSDKResources.bundle"
spec.requires_arc = true
spec.framework = "MobileCoreServices", "CoreGraphics", "Foundation", "UIKit"
spec.library = "xml2"
end