Merge pull request #79 from elektrojunge/master

Updated podspec to use vendored_frameworks attribute
This commit is contained in:
Andreas Linde 2013-11-08 05:34:20 -08:00
parent fe9bbd55e9
commit 27b7ebe201

View File

@ -18,10 +18,10 @@ Pod::Spec.new do |s|
s.source_files = 'Classes'
s.requires_arc = true
s.preserve_paths = 'Resources', 'Support', 'Vendor'
s.frameworks = 'CoreText', 'QuartzCore', 'SystemConfiguration', 'CrashReporter', 'CoreGraphics', 'UIKit', 'Security'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/HockeySDK/Vendor"',
'GCC_PREPROCESSOR_DEFINITIONS' => %{$(inherited) BITHOCKEY_VERSION="@\\"#{s.version}\\""} }
s.preserve_paths = 'Resources', 'Support'
s.frameworks = 'CoreText', 'QuartzCore', 'SystemConfiguration', 'CoreGraphics', 'UIKit', 'Security'
s.ios.vendored_frameworks = 'Vendor/CrashReporter.framework'
s.xcconfig = {'GCC_PREPROCESSOR_DEFINITIONS' => %{$(inherited) BITHOCKEY_VERSION="@\\"#{s.version}\\""} }
s.resource_bundle = { 'HockeySDKResources' => ['Resources/*.png', 'Resources/*.lproj'] }
end