mirror of https://github.com/ioquatix/ffi-clang
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
328 B
Ruby
17 lines
328 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Released under the MIT License.
|
|
# Copyright, 2013-2022, by Samuel Williams.
|
|
|
|
require 'teapot'
|
|
|
|
task :default do
|
|
controller = Teapot::Controller.new(__dir__)
|
|
|
|
controller.fetch
|
|
|
|
packages = ["Dependencies/ffi-clang", "variant-release", "platform-darwin-osx"]
|
|
|
|
controller.build(packages)
|
|
end
|