Archived
1
Fork 0
This repository has been archived on 2025-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
box-car-2d/Podfile

19 lines
457 B
Ruby

# Basic Podfile template
# Put all the pods in both targets (I did not succeed in making this nicer)
# A Podfile always need a default platform (I get an error otherwise)
platform :osx, '10.9'
target 'OSX' do
platform :osx, '10.9'
pod 'box2d'
pod 'moggle', :git => 'https://github.com/Jaxan/moggle', :tag => "0.1.0"
end
target 'iOS' do
platform :ios, '7.0'
pod 'box2d'
pod 'moggle', :git => 'https://github.com/Jaxan/moggle', :tag => "0.1.0"
end