summaryrefslogtreecommitdiffhomepage
path: root/target/appveyor.rb
diff options
context:
space:
mode:
Diffstat (limited to 'target/appveyor.rb')
-rw-r--r--target/appveyor.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/target/appveyor.rb b/target/appveyor.rb
deleted file mode 100644
index e084a6a36..000000000
--- a/target/appveyor.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-def setup_option(conf)
- conf.cc.flags[0].delete("/Zi") unless ENV['CFLAGS']
- conf.cxx.flags[0].delete("/Zi") unless ENV['CFLAGS'] || ENV['CXXFLAGS']
- conf.linker.flags << "/DEBUG:NONE" unless ENV['LDFLAGS']
-end
-
-MRuby::Build.new do |conf|
- toolchain :visualcpp
-
- # include all core GEMs
- conf.gembox 'full-core'
- conf.compilers.each do |c|
- c.defines += %w(MRB_GC_FIXED_ARENA)
- end
- setup_option(conf)
- conf.enable_bintest
- conf.enable_test
-end