Sha256: 1dc4bee75cc0a670025e0c7d5a260735801335c1b03007eda7aae681d9496a74
Contents?: true
Size: 499 Bytes
Versions: 10
Compression:
Stored size: 499 Bytes
Contents
MRuby::Build.new do |conf| # Gets set by the VS command prompts. if ENV['VisualStudioVersion'] || ENV['VSINSTALLDIR'] toolchain :visualcpp else toolchain :gcc end enable_debug # include the default GEMs conf.gembox 'default' end # Requires Android NDK r13 or later. MRuby::CrossBuild.new('android-armeabi') do |conf| params = { :arch => 'armeabi', :platform => 'android-24', :toolchain => :clang, } toolchain :android, params conf.gembox 'default' end
Version data entries
10 entries across 10 versions & 1 rubygems