Skip to content

Commit e415c04

Browse files
committed
Bump MRuby to 3.4
1 parent 99799d4 commit e415c04

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Rakefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ ENV["CMAKE_BUILD_PARALLEL_LEVEL"] ||= (Etc.nprocessors + 2).to_s
88
ENV["DEBUG"] ||= "true"
99

1010
MRUBY_CONFIG = File.expand_path(ENV["MRUBY_CONFIG"] || "build_config.rb")
11-
MRUBY_VERSION = "3.3.0"
11+
MRUBY_VERSION = "3.4.0"
1212
CUTE_VERSION = "defrag-spritebatcher-before-flushing"
1313
DEPS_DIR = File.expand_path("deps")
14-
MRUBY_DEPS_DIR = File.join(DEPS_DIR, "mruby")
14+
MRUBY_DEPS_DIR = File.join(DEPS_DIR, "mruby-#{MRUBY_VERSION}")
1515
MRUBY_ARCHIVE = File.join(DEPS_DIR, "mruby-#{MRUBY_VERSION}.zip")
1616
CUTE_DEPS_DIR = File.join(DEPS_DIR, "cute_framework")
1717
CUTE_BUILD_DIR = File.join(CUTE_DEPS_DIR, ["build", ENV["CMAKE_GENERATOR"], ENV["RELEASE"] ? "release" : "debug"].join("_"))
@@ -34,7 +34,6 @@ end
3434
desc "Extract MRuby"
3535
file MRUBY_DEPS_DIR => [MRUBY_ARCHIVE] do
3636
sh "unzip -q #{MRUBY_ARCHIVE} -d #{DEPS_DIR}"
37-
sh "mv #{DEPS_DIR}/mruby-#{MRUBY_VERSION} #{MRUBY_DEPS_DIR}"
3837
end
3938

4039
desc "Download Cute"

0 commit comments

Comments
 (0)