Skip to content

Instantly share code, notes, and snippets.

@demonnico
Created June 13, 2013 11:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save demonnico/5772944 to your computer and use it in GitHub Desktop.
Save demonnico/5772944 to your computer and use it in GitHub Desktop.
cocoapod local pod config
Pod::Spec.new do |s|
s.name = 'SDK'
s.version = '1.0.0'
s.license = 'Commercial'
s.summary = 'SDK summary'
s.homepage = 'https://sdkhomepage.com/'
s.author = { 'SDK author' => 'https://sdkauthor.com/' }
s.source = { :git => '~/Desktop/SDK' }
s.platform = :ios
s.source_files = '**/*.h'
s.preserve_paths = '**/*.a'
s.library = 'Chartboost'
s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/SDK/Chartboost"' }
s.weak_frameworks = 'AdSupport', 'StoreKit'
s.frameworks = 'QuartzCore', 'SystemConfiguration', 'CoreGraphics'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment