oga/ext/c/extconf.rb

12 lines
158 B
Ruby
Raw Normal View History

require 'mkmf'
2015-03-22 13:03:37 +00:00
if RbConfig::CONFIG['cc'] =~ /clang|gcc/
$CFLAGS << ' -pedantic'
end
if ENV['DEBUG']
$CFLAGS << ' -O0 -g'
end
create_makefile('liboga')