1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-04 10:27:46 +01:00
Telegram/thirdparty/pop/pop.podspec
2016-02-25 01:03:51 +01:00

21 lines
1.0 KiB
Ruby

Pod::Spec.new do |spec|
spec.name = 'pop'
spec.version = '1.0.7'
spec.license = { :type => 'BSD' }
spec.homepage = 'https://github.com/facebook/pop'
spec.authors = { 'Kimon Tsinteris' => 'kimon@mac.com' }
spec.summary = 'Extensible animation framework for iOS and OS X.'
spec.source = { :git => 'https://github.com/facebook/pop.git', :tag => '1.0.7' }
spec.source_files = 'pop/**/*.{h,m,mm,cpp}'
spec.public_header_files = 'pop/{POP,POPAnimatableProperty,POPAnimation,POPAnimationEvent,POPAnimationExtras,POPAnimationTracer,POPAnimator,POPBasicAnimation,POPCustomAnimation,POPDecayAnimation,POPDefines,POPGeometry,POPLayerExtras,POPPropertyAnimation,POPSpringAnimation}.h'
spec.requires_arc = true
spec.social_media_url = 'https://twitter.com/fbOpenSource'
spec.library = 'c++'
spec.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++11',
'CLANG_CXX_LIBRARY' => 'libc++'
}
spec.ios.deployment_target = '6.0'
spec.osx.deployment_target = '10.7'
end