mirror of
https://github.com/ruby-opencv/ruby-opencv
synced 2023-03-27 23:22:12 -04:00
65 lines
1.5 KiB
Ruby
Executable file
65 lines
1.5 KiB
Ruby
Executable file
#!/usr/bin/env ruby
|
|
#/usr/local/bin/ruby
|
|
=begin
|
|
create Makefile script for Ruby/OpenCV
|
|
|
|
usage : ruby extconf.rb
|
|
make && make install
|
|
|
|
VC : ruby extconf.rb
|
|
nmake
|
|
=end
|
|
require "mkmf"
|
|
|
|
# option "opencv"
|
|
# extconf.rb --with-opencv-lib=/path/to/opencv/lib
|
|
# extconf.rb --with-opencv-include=/path/to/opencv/include
|
|
|
|
dir_config("opencv", "/usr/local/include/opencv", "/usr/local/lib")
|
|
if CONFIG["arch"].include?("darwin")
|
|
dir_config("ffcall", "/opt/local/include", "/opt/local/lib")
|
|
else
|
|
dir_config("ffcall", "/usr/local/include", "/usr/local/lib")
|
|
end
|
|
|
|
opencv_libraries = ["cxcore", "cv", "highgui"]
|
|
|
|
puts ">> check require libraries..."
|
|
case CONFIG["arch"]
|
|
when /mswin32/
|
|
have_library("msvcrt", nil)
|
|
opencv_libraries.each{|lib|
|
|
have_library(lib)
|
|
}
|
|
else
|
|
opencv_libraries.each{|lib|
|
|
raise "lib#{lib} not found." unless have_library(lib)
|
|
}
|
|
#have_library("ml")
|
|
have_library("stdc++")
|
|
end
|
|
|
|
# check require headers
|
|
puts ">> check require headers..."
|
|
opencv_libraries.map{|lib| "#{lib}.h"}.each{|header|
|
|
raise "#{header} not found." unless have_header(header)
|
|
}
|
|
#have_header("ml.h")
|
|
have_header("stdarg.h")
|
|
|
|
# check require functions.
|
|
# todo
|
|
|
|
# optional libraies check.
|
|
puts ">> ----- optional -----"
|
|
puts ">> check ffcall..."
|
|
# check ffcall
|
|
if have_library("callback") && have_header("callback.h")
|
|
puts ">> support OpenCV::GUI"
|
|
else
|
|
puts ">> ! unsupport OpenCV::GUI (if need it. install ffcall)"
|
|
puts "http://www.haible.de/bruno/packages-ffcall.html"
|
|
end
|
|
|
|
# step-final. create Makefile
|
|
create_makefile("opencv")
|