summaryrefslogtreecommitdiffstats
path: root/Modules/FindRuby.cmake
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2004-04-30 16:11:02 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2004-04-30 16:11:02 (GMT)
commit257daa4635ed9b88035c84c5cb1fcc689268a949 (patch)
tree1bec9e0ec65c8e8bcf37c50d373013dfdd2aab17 /Modules/FindRuby.cmake
parent858564fb103666adc26d3e8077cbded1fcbe0b18 (diff)
downloadCMake-257daa4635ed9b88035c84c5cb1fcc689268a949.zip
CMake-257daa4635ed9b88035c84c5cb1fcc689268a949.tar.gz
CMake-257daa4635ed9b88035c84c5cb1fcc689268a949.tar.bz2
ENH: Initial import of swig. Start working towards Bug #749 - Add swig support module to cmake
Diffstat (limited to 'Modules/FindRuby.cmake')
-rw-r--r--Modules/FindRuby.cmake37
1 files changed, 37 insertions, 0 deletions
diff --git a/Modules/FindRuby.cmake b/Modules/FindRuby.cmake
new file mode 100644
index 0000000..dfc811a
--- /dev/null
+++ b/Modules/FindRuby.cmake
@@ -0,0 +1,37 @@
+#
+# 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:
+#
+# RUBY_INCLUDE_PATH = path to where object.h can be found
+# RUBY_EXECUTABLE = full path to the ruby binary
+#
+
+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
+ )