11 lines
244 B
Ruby
Vendored
11 lines
244 B
Ruby
Vendored
MRuby::Build.new('bench') do |conf|
|
|
# Gets set by the VS command prompts.
|
|
if ENV['VisualStudioVersion'] || ENV['VSINSTALLDIR']
|
|
toolchain :visualcpp
|
|
else
|
|
toolchain :gcc
|
|
conf.cc.flags << '-O3'
|
|
end
|
|
|
|
conf.gembox 'default'
|
|
end
|