mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
14 lines
205 B
Ruby
14 lines
205 B
Ruby
#!/usr/bin/env ruby
|
|
|
|
require 'rake'
|
|
require '../../common'
|
|
|
|
|
|
subprojects = %w{BlendKit blend}
|
|
|
|
%w(build clean clobber).each do |task_name|
|
|
task task_name do
|
|
subrake(subprojects, task_name)
|
|
end
|
|
end
|