2005-12-14 21:51:08 +03:00
|
|
|
# - Find ruby
|
2004-04-30 20:11:02 +04:00
|
|
|
# This module finds if RUBY is installed and determines where the include files
|
|
|
|
# and libraries are. It also determines what the name of the library is. This
|
|
|
|
# code sets the following variables:
|
|
|
|
#
|
2005-12-15 22:17:43 +03:00
|
|
|
# RUBY_INCLUDE_PATH = path to where ruby.h can be found
|
|
|
|
# RUBY_EXECUTABLE = full path to the ruby binary
|
2004-04-30 20:11:02 +04:00
|
|
|
#
|
|
|
|
|
|
|
|
SET(RUBY_POSSIBLE_INCLUDE_PATHS
|
|
|
|
/usr/lib/ruby/1.8/i386-linux
|
|
|
|
)
|
|
|
|
|
|
|
|
SET(RUBY_POSSIBLE_LIB_PATHS
|
|
|
|
/usr/lib
|
|
|
|
)
|
|
|
|
|
|
|
|
FIND_PATH(RUBY_INCLUDE_PATH ruby.h
|
|
|
|
${RUBY_POSSIBLE_INCLUDE_PATHS})
|
|
|
|
|
|
|
|
FIND_LIBRARY(RUBY_LIBRARY
|
|
|
|
NAMES ruby1.8
|
|
|
|
PATHS ${RUBY_POSSIBLE_LIB_PATHS}
|
|
|
|
)
|
|
|
|
|
|
|
|
FIND_PROGRAM(RUBY_EXECUTABLE
|
|
|
|
NAMES ruby1.8
|
|
|
|
PATHS
|
|
|
|
/usr/bin
|
|
|
|
/usr/local/bin
|
|
|
|
)
|
|
|
|
|
|
|
|
MARK_AS_ADVANCED(
|
|
|
|
RUBY_EXECUTABLE
|
|
|
|
RUBY_LIBRARY
|
|
|
|
RUBY_INCLUDE_PATH
|
|
|
|
)
|