Sha256: 8450b9d24f79d15969ce21f17a6d1bd6fddf50c9838e2675a6c9e8b534b886ae

Contents?: true

Size: 492 Bytes

Versions: 6

Compression:

Stored size: 492 Bytes

Contents

# Loads mkmf which is used to make makefiles for Ruby extensions
require 'mkmf'

# Give it a name
extension_name = 'buncher'

# still necessary in order to avoid compile errors like this:
# https://gist.github.com/48a9a212fd8f9011009f
# isnan - not a member of std:
# random library - doesn't exist
# and other incompatibilities
self.class::CONFIG['CXX'] = "#{self.class::CONFIG['CXX']} -std=c++11"
# The destination
dir_config(extension_name)
# Do the work
create_makefile('buncher/buncher')

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
buncher-1.0.16 ext/buncher/extconf.rb
buncher-1.0.15 ext/buncher/extconf.rb
buncher-1.0.14 ext/buncher/extconf.rb
buncher-1.0.13 ext/buncher/extconf.rb
buncher-1.0.12 ext/buncher/extconf.rb
buncher-1.0.11 ext/buncher/extconf.rb