-
Notifications
You must be signed in to change notification settings - Fork 140
/
Cedar.podspec
32 lines (29 loc) · 1.11 KB
/
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
26
27
28
29
30
31
32
Pod::Spec.new do |s|
s.name = 'Cedar'
s.version = '1.0'
s.license = 'MIT'
s.summary = 'BDD-style testing using Objective-C.'
s.homepage = 'https://github.com/cedarbdd/cedar'
s.author = { 'Pivotal Labs' => 'http://pivotallabs.com' }
s.license = { :type => 'MIT', :file => 'MIT.LICENSE.txt' }
s.source = { :git => 'https://github.com/cedarbdd/cedar.git', :tag => "v#{s.version}" }
s.osx.deployment_target = '10.7'
s.ios.deployment_target = '6.0'
s.watchos.deployment_target = '2.0'
s.source_files = 'Source/**/*.{h,m,mm}'
s.public_header_files = 'Source/Headers/Public/**/*.{h}'
s.osx.exclude_files = '**/{iOS,UIKit}/**'
s.ios.exclude_files = '**/OSX/**'
s.watchos.exclude_files = '**/{OSX,iOS}/**'
s.tvos.deployment_target = '9.0'
s.tvos.exclude_files = '**/OSX/**'
# Versions of this pod >= 0.9.0 require C++11.
# https://github.com/cedarbdd/cedar/issues/47
s.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++0x',
'CLANG_CXX_LIBRARY' => 'libc++',
'OTHER_CFLAGS' => '-DDEVELOPER_BIN_DIR=@\"${DEVELOPER_BIN_DIR}\"'
}
s.libraries = 'c++'
s.requires_arc = false
end