Sha256: 2071a7654e786bf3f1100e5ed2f2ab8ebef5668e02e7b43bc3a274ef0da5a838
Contents?: true
Size: 380 Bytes
Versions: 32
Compression:
Stored size: 380 Bytes
Contents
class Gem::Ext::CmakeBuilder < Gem::Ext::Builder def self.build(extension, directory, dest_path, results) 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
Version data entries
32 entries across 32 versions & 1 rubygems