oga/ext/c/extconf.rb

14 lines
173 B
Ruby
Raw Normal View History

require 'mkmf'
have_header('ruby.h')
$CFLAGS << ' -Wextra -Wall -pedantic'
if ENV['DEBUG']
$CFLAGS << ' -O0 -g'
else
$CFLAGS << ' -O3'
end
create_makefile('liboga')