forked from Evernote/evernote-cloud-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
EvernoteSDK.podspec
20 lines (18 loc) · 984 Bytes
/
EvernoteSDK.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |spec|
spec.name = "EvernoteSDK"
spec.version = "3.0.0"
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/WebISInc/evernote-cloud-sdk-ios.git", :tag => "3.0.0"}
spec.ios.deployment_target = "13.0"
spec.osx.deployment_target = "10.13"
spec.xcconfig = {'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2 ${PODS_ROOT}/Headers/Public/evernote-cloud-sdk-ios/SendToEvernoteActivity'}
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 = "CoreServices", "CoreGraphics", "Foundation", "UIKit", "WebKit"
spec.library = "xml2"
end