You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- require 'mkmf'
- dir_config('igraph')
- unless have_library("igraph")
- $stderr.puts "\nERROR: Cannot find the iGraph library, aborting."
- exit 1
- end
- unless have_header("igraph.h")
- $stderr.puts "\nERROR: Cannot find the iGraph header, aborting."
- exit 1
- end
-
- create_makefile("igraph")
|