2015-09-05 11:10:10 +02:00
|
|
|
MRuby::Build.new do |conf|
|
|
|
|
# TODO use same compilers configured in configure script
|
|
|
|
toolchain :clang
|
|
|
|
|
|
|
|
# C++ project needs this. Without this, mruby exception does not
|
|
|
|
# properly destory C++ object allocated on stack.
|
2017-07-09 16:45:42 +02:00
|
|
|
conf.enable_cxx_exception
|
2015-09-05 11:10:10 +02:00
|
|
|
|
|
|
|
conf.build_dir = ENV['BUILD_DIR']
|
|
|
|
|
|
|
|
# include the default GEMs
|
|
|
|
conf.gembox 'default'
|
|
|
|
conf.gem :core => 'mruby-eval'
|
|
|
|
end
|