mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-19 00:56:52 +08:00
11 lines
335 B
Ruby
11 lines
335 B
Ruby
$:.unshift("../lib")
|
|
#$:.unshift("/Library/RubyMotion/lib")
|
|
require 'motion/project'
|
|
|
|
Motion::Project::App.setup do |app|
|
|
# Use `rake config' to see complete project settings.
|
|
app.name = 'test'
|
|
app.frameworks += ['AddressBook', 'AddressBookUI', 'CoreData', 'CoreMIDI', 'GameKit']
|
|
app.vendor_project('vendor/code', :static)
|
|
end
|