File: Rakefile

package info (click to toggle)
ruby-unf-ext 0.0.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,480 kB
  • sloc: cpp: 14,130; lisp: 1,180; ruby: 98; makefile: 4
file content (37 lines) | stat: -rw-r--r-- 832 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
require 'bundler/gem_tasks'

gemspec = Bundler::GemHelper.gemspec

native_platforms = %w[
  x86-mingw32
  x64-mingw32
  x64-mingw-ucrt
]

require 'rake/extensiontask'
Rake::ExtensionTask.new('unf_ext', gemspec) do |ext|
  ext.cross_compile = true
  ext.cross_platform = native_platforms
  ext.cross_config_options << '--with-ldflags="-static-libgcc"' << '--with-static-libstdc++'
end

namespace :gem do
  task :native do
    require 'rake_compiler_dock'
    sh 'bundle package --all'
    native_platforms.each do |plat|
      RakeCompilerDock.sh "bundle --local && rake native:#{plat} gem", platform: plat
    end
  end
end

task :gems => %i[build gem:native]

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'test'
  test.test_files = gemspec.test_files
  test.verbose = true
end

task :default => :test