forked from cedarbdd/cedar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cedar.podspec
25 lines (22 loc) · 807 Bytes
/
Cedar.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Pod::Spec.new do |s|
s.name = 'Cedar'
s.version = '0.10.0'
s.license = 'MIT'
s.summary = 'BDD-style testing using Objective-C.'
s.homepage = 'https://github.com/pivotal/cedar'
s.author = { 'Pivotal Labs' => 'http://pivotallabs.com' }
s.license = { :type => 'MIT', :file => 'MIT.LICENSE.txt' }
s.source = { :git => 'https://github.com/pivotal/cedar.git', :tag => 'v0.10.0' }
s.osx.deployment_target = '10.7'
s.ios.deployment_target = '6.0'
s.source_files = 'Source/**/*.{h,m,mm}'
s.osx.exclude_files = '**/iPhone/**'
# Versions of this pod >= 0.9.0 require C++11.
# https://github.com/pivotal/cedar/issues/47
s.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++0x',
'CLANG_CXX_LIBRARY' => 'libc++'
}
s.libraries = 'c++'
s.requires_arc = false
end