Skip to content

Commit

Permalink
support Watch OS in Core podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
DenTelezhkin committed Jul 29, 2015
1 parent 8fbc6ad commit e8f9152
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion EasyMapping.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,18 @@ Pod::Spec.new do |s|

s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.watchos.deployment_target = '2.0'

s.subspec 'Core' do |core|
core.watchos.deployment_target = '2.0'
core.ios.deployment_target = '5.0'
core.osx.deployment_target = '10.7'
core.frameworks = 'CoreData'
core.source_files = 'EasyMapping/*.{h,m}'
end

s.subspec 'XCTest' do |xctest|
xctest.ios.deployment_target = '5.0'
xctest.osx.deployment_target = '10.7'
xctest.dependency 'EasyMapping/Core'
xctest.frameworks = 'XCTest'
xctest.source_files = 'XCTest+EasyMapping/*.{h,m}'
Expand Down

0 comments on commit e8f9152

Please sign in to comment.