Class: Gem::Ext::CmakeBuilder
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
Builder
|
|
Instance Chain:
|
|
Inherits: |
Gem::Ext::Builder
|
Defined in: | lib/rubygems/ext/cmake_builder.rb |
Class Method Summary
Instance Attribute Summary
Builder
- Inherited
::Gem::DefaultUserInteraction
- Included
Instance Method Summary
Builder
- Inherited
#build_extensions | Builds extensions. |
#build_error | Logs the build |
#build_extension, | |
#builder_for | Chooses the extension builder class for |
#write_gem_make_out | Writes |
::Gem::UserInteraction
- Included
#alert | Displays an alert |
#alert_error | Displays an error |
#alert_warning | Displays a warning |
#ask | Asks a |
#ask_for_password | Asks for a password with a |
#ask_yes_no | Asks a yes or no |
#choose_from_list | Asks the user to answer |
#say | Displays the given |
#terminate_interaction | Terminates the RubyGems process with the given |
#verbose | Calls |
::Gem::DefaultUserInteraction
- Included
::Gem::Text
- Included
#clean_text | Remove any non-printable characters and make the text suitable for printing. |
#format_text | Wraps |
#levenshtein_distance | Returns a value representing the “cost” of transforming str1 into str2 Vendored version of |
#truncate_text, #min3 |
Constructor Details
This class inherits a constructor from Gem::Ext::Builder
Class Method Details
.build(extension, dest_path, results, args = [], lib_dir = nil, cmake_dir = Dir.pwd, target_rbconfig = Gem.target_rbconfig)
[ GitHub ]# File 'lib/rubygems/ext/cmake_builder.rb', line 4
def self.build(extension, dest_path, results, args=[], lib_dir=nil, cmake_dir=Dir.pwd, target_rbconfig=Gem.target_rbconfig) if target_rbconfig.path warn "--target-rbconfig is not yet supported for CMake extensions. Ignoring" end unless File.exist?(File.join(cmake_dir, "Makefile")) require_relative "../command" cmd = ["cmake", ".", "-DCMAKE_INSTALL_PREFIX=#{dest_path}", *Gem::Command.build_args] run cmd, results, class_name, cmake_dir end make dest_path, results, cmake_dir, target_rbconfig: target_rbconfig results end