OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
ruby
/
2.5.0
/
rubygems
/
ext
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:11 AM
rwxr-xr-x
📄
build_error.rb
145 bytes
02/01/2016 12:43:26 PM
rw-r--r--
📄
builder.rb
5.67 KB
03/19/2018 08:27:04 AM
rw-r--r--
📄
cmake_builder.rb
460 bytes
02/01/2016 12:43:26 PM
rw-r--r--
📄
configure_builder.rb
531 bytes
02/01/2016 12:43:26 PM
rw-r--r--
📄
ext_conf_builder.rb
2.92 KB
05/16/2017 05:47:53 AM
rw-r--r--
📄
rake_builder.rb
981 bytes
10/06/2017 12:15:08 AM
rw-r--r--
Editing: cmake_builder.rb
Close
# frozen_string_literal: true require 'rubygems/command' class Gem::Ext::CmakeBuilder < Gem::Ext::Builder def self.build(extension, directory, dest_path, results, args=[], lib_dir=nil) unless File.exist?('Makefile') then 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