Genetic generation of cars in a 2D environment
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
# 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', :path => '../moggle'
|
|
|
|
end
|
|
|
|
|
|
|
|
target 'iOS' do
|
|
|
|
platform :ios, '7.0'
|
|
|
|
|
|
|
|
pod 'box2d'
|
|
|
|
pod 'moggle', :path => '../moggle'
|
|
|
|
end
|
|
|
|
|