source: EcnlProtoTool/trunk/mruby-2.1.1/appveyor_config.rb@ 439

Last change on this file since 439 was 439, checked in by coas-nagasima, 4 years ago

mrubyを2.1.1に更新

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-ruby
File size: 704 bytes
Line 
1MRuby::Build.new('full-debug') do |conf|
2 toolchain :visualcpp
3 enable_debug
4
5 # include all core GEMs
6 conf.gembox 'full-core'
7 conf.cc.defines += %w(MRB_GC_STRESS MRB_METHOD_CACHE MRB_ENABLE_DEBUG_HOOK)
8
9 conf.enable_test
10end
11
12MRuby::Build.new do |conf|
13 toolchain :visualcpp
14
15 # include all core GEMs
16 conf.gembox 'full-core'
17 conf.compilers.each do |c|
18 c.defines += %w(MRB_GC_FIXED_ARENA)
19 end
20 conf.enable_bintest
21 conf.enable_test
22end
23
24MRuby::Build.new('cxx_abi') do |conf|
25 toolchain :visualcpp
26
27 conf.gembox 'full-core'
28 conf.compilers.each do |c|
29 c.defines += %w(MRB_GC_FIXED_ARENA)
30 end
31 conf.enable_bintest
32 conf.enable_test
33
34 enable_cxx_abi
35
36 build_mrbc_exec
37end
Note: See TracBrowser for help on using the repository browser.