1
0
Fork 0
mirror of https://github.com/ruby-opencv/ruby-opencv synced 2023-03-27 23:22:12 -04:00
ruby-opencv/extconf.rb

74 lines
2.4 KiB
Ruby
Raw Normal View History

2008-08-19 14:55:46 -04:00
#!/usr/bin/env ruby
=begin
create Makefile script for Ruby/OpenCV
usage : ruby extconf.rb
make && make install
VC : ruby extconf.rb
nmake
nmake install
=end
require "mkmf"
2012-07-16 04:48:19 -04:00
incdir, libdir = dir_config("opencv", "/usr/local/include", "/usr/local/lib")
2010-12-29 14:32:34 -05:00
dir_config("libxml2", "/usr/include", "/usr/lib")
opencv_headers = ["opencv2/core/core_c.h", "opencv2/core/core.hpp", "opencv2/imgproc/imgproc_c.h",
"opencv2/imgproc/imgproc.hpp", "opencv2/video/tracking.hpp", "opencv2/features2d/features2d.hpp",
"opencv2/flann/flann.hpp", "opencv2/calib3d/calib3d.hpp", "opencv2/objdetect/objdetect.hpp",
"opencv2/legacy/compat.hpp", "opencv2/legacy/legacy.hpp", "opencv2/highgui/highgui_c.h",
"opencv2/highgui/highgui.hpp", "opencv2/photo/photo.hpp", "opencv2/nonfree/nonfree.hpp"]
2010-12-29 14:32:34 -05:00
opencv_libraries = ["opencv_calib3d", "opencv_contrib", "opencv_core", "opencv_features2d",
"opencv_flann", "opencv_gpu", "opencv_highgui", "opencv_imgproc",
"opencv_legacy", "opencv_ml", "opencv_objdetect", "opencv_video",
"opencv_photo", "opencv_nonfree"]
2012-02-04 05:51:21 -05:00
puts ">> Check the required libraries..."
2012-07-14 07:22:04 -04:00
OPENCV_VERSION_SUFFIX = '242'
case CONFIG["arch"]
when /mswin32/
opencv_libraries.map! {|lib| lib + OPENCV_VERSION_SUFFIX }
have_library("msvcrt")
2012-02-04 05:51:21 -05:00
opencv_libraries.each {|lib|
2011-12-27 09:47:08 -05:00
raise "#{lib}.lib not found." unless have_library(lib)
}
$CFLAGS << ' /EHsc'
2012-02-04 05:51:21 -05:00
when /mingw32/
opencv_libraries.map! {|lib| lib + OPENCV_VERSION_SUFFIX }
have_library("msvcrt")
opencv_libraries.each {|lib|
raise "lib#{lib} not found." unless have_library(lib)
}
else
2012-02-04 05:51:21 -05:00
opencv_libraries.each {|lib|
raise "lib#{lib} not found." unless have_library(lib)
}
have_library("stdc++")
end
2012-02-04 05:51:21 -05:00
# Check the required headers
puts ">> Check the required headers..."
opencv_headers.each {|header|
2012-07-16 04:48:19 -04:00
unless have_header(header)
if CONFIG["arch"] =~ /mswin32/ and File.exists? "#{incdir}/#{header}"
# In mswin32, have_header('opencv2/nonfree/nonfree.hpp') fails because of a syntax problem.
warn "warning: #{header} found but `have_header` failed."
$defs << "-DHAVE_#{header.tr_cpp}"
else
raise "#{header} not found."
end
end
}
have_header("stdarg.h")
# Quick fix for 1.8.7
$CFLAGS << " -I#{File.dirname(__FILE__)}/ext/opencv"
2012-02-04 05:51:21 -05:00
# Create Makefile
create_makefile("opencv", "./ext/opencv")