Sha256: 15d62ac9bf0c80eb3c9751bf4bbe4f4cea0a6ec23925100f4fec3b12c5939345

Contents?: true

Size: 446 Bytes

Versions: 10

Compression:

Stored size: 446 Bytes

Contents

# frozen_string_literal: true
require 'rubygems/command'

class Gem::Ext::CmakeBuilder < Gem::Ext::Builder

  def self.build(extension, dest_path, results, args=[], lib_dir=nil)
    unless File.exist?('Makefile')
      cmd = "cmake . -DCMAKE_INSTALL_PREFIX=#{dest_path}"
      cmd << " #{Gem::Command.build_args.join ' '}" unless Gem::Command.build_args.empty?

      run cmd, results
    end

    make dest_path, results

    results
  end

end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rubygems-update-3.1.6 lib/rubygems/ext/cmake_builder.rb
rubygems-update-3.1.5 lib/rubygems/ext/cmake_builder.rb
rubygems-update-3.1.4 lib/rubygems/ext/cmake_builder.rb
rubygems-update-3.1.3 lib/rubygems/ext/cmake_builder.rb
rubygems-update-3.1.2 lib/rubygems/ext/cmake_builder.rb
rubygems-update-3.1.1 lib/rubygems/ext/cmake_builder.rb
rubygems-update-3.1.0 lib/rubygems/ext/cmake_builder.rb
rubygems-update-3.1.0.pre3 lib/rubygems/ext/cmake_builder.rb
rubygems-update-3.1.0.pre2 lib/rubygems/ext/cmake_builder.rb
rubygems-update-3.1.0.pre1 lib/rubygems/ext/cmake_builder.rb