Sha256: eaf473929c9a50b77f31968a6e858dc2745314a632a8d2a878f937cc7848bbac
Contents?: true
Size: 799 Bytes
Versions: 16
Compression:
Stored size: 799 Bytes
Contents
# Copyright (c) 2023 M.J.N. Corino, The Netherlands # # This software is released under the MIT license. ### # wxRuby3 rake file ### namespace :wxruby do if WXRuby3.is_configured? require_relative './install' task :install => [ 'wxruby:build', *WXRuby3::ALL_RUBY_LIB_FILES, 'bin:build' ] do | t, args | WXRuby3::Install.define(t, args) WXRuby3::Install.nowrite(ENV['NO_HARM'] ? true : false) do WXRuby3::Install.install Rake::Task['wxruby:post:install'].invoke end end task :uninstall => WXRuby3::BUILD_CFG do | t, args | WXRuby3::Install.define(t, args) WXRuby3::Install.nowrite(ENV['NO_HARM'] ? true : false) do Rake::Task['wxruby:pre:uninstall'].invoke WXRuby3::Install.uninstall end end end end
Version data entries
16 entries across 16 versions & 1 rubygems