extconf.rb 234 B

123456789
  1. require 'mkmf'
  2. dir_config('yourlib')
  3. if have_header('yourlib.h') and have_library('yourlib', 'yourlib_init')
  4. # If you use swig -c option, you may have to link libswigrb.
  5. # have_library('swigrb')
  6. create_makefile('yourlib')
  7. end