aboutsummaryrefslogtreecommitdiff
path: root/modules/FindRUBY.cmake
diff options
context:
space:
mode:
authorLaurent Montel <montel@kde.org>2006-05-30 09:02:38 +0000
committerLaurent Montel <montel@kde.org>2006-05-30 09:02:38 +0000
commit13b769c326f2087c87cdb78ab2fae47ec17e4b18 (patch)
tree50a3f6fcc2b6c5c75ba135a4db68335bbad43835 /modules/FindRUBY.cmake
parenteb62676c22b4f2c3b5810e05fd99dfa5ab02d8d6 (diff)
downloadextra-cmake-modules-13b769c326f2087c87cdb78ab2fae47ec17e4b18.tar.gz
extra-cmake-modules-13b769c326f2087c87cdb78ab2fae47ec17e4b18.tar.bz2
Move cmake duplicate check here:
-> FindTagLib: need by kdemultimedia/amarok -> FindPostgreSQL: need by koffice-kexi/amarok -> FindMySQL: need by koffice-kexi/amarok -> FindMusicBrainz: need by amarok/kdemultimedia -> FindUSB: need by kdebase/amarok -> FindBerkeleyDB: need by kbabel/kdevelop -> FindRUBY: need by koffice-kross/amarok I will remove them from kde module after new snapshot (next monday) svn path=/trunk/KDE/kdelibs/; revision=546487
Diffstat (limited to 'modules/FindRUBY.cmake')
-rw-r--r--modules/FindRUBY.cmake43
1 files changed, 43 insertions, 0 deletions
diff --git a/modules/FindRUBY.cmake b/modules/FindRUBY.cmake
new file mode 100644
index 00000000..8bcfb357
--- /dev/null
+++ b/modules/FindRUBY.cmake
@@ -0,0 +1,43 @@
+# - Find ruby
+# 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 ruby.h can be found
+# RUBY_EXECUTABLE = full path to the ruby binary
+#
+
+if(RUBY_LIBRARY AND RUBY_INCLUDE_PATH)
+ # Already in cache, be silent
+ set(RUBY_FIND_QUIETLY TRUE)
+endif (RUBY_LIBRARY AND RUBY_INCLUDE_PATH)
+
+SET(RUBY_POSSIBLE_INCLUDE_PATHS
+ /usr/lib/ruby/1.8/i586-linux-gnu/
+ )
+
+SET(RUBY_POSSIBLE_LIB_PATHS
+ /usr/lib
+ )
+
+FIND_PATH(RUBY_INCLUDE_PATH ruby.h
+ ${RUBY_POSSIBLE_INCLUDE_PATHS})
+
+FIND_LIBRARY(RUBY_LIBRARY
+ NAMES ruby
+ PATHS ${RUBY_POSSIBLE_LIB_PATHS}
+ )
+
+FIND_PROGRAM(RUBY_EXECUTABLE
+ NAMES ruby
+ PATHS
+ /usr/bin
+ /usr/local/bin
+)
+
+MARK_AS_ADVANCED(
+ RUBY_EXECUTABLE
+ RUBY_LIBRARY
+ RUBY_INCLUDE_PATH
+ )
+