Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move the cmake files in tools/cmake
[simgrid.git] / buildtools / Cmake / Modules / FindRubySimgrid.cmake
diff --git a/buildtools/Cmake/Modules/FindRubySimgrid.cmake b/buildtools/Cmake/Modules/FindRubySimgrid.cmake
deleted file mode 100644 (file)
index 1277feb..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-include(FindRuby)
-
-if(RUBY_EXECUTABLE)
-       message(STATUS "Found ruby:     ${RUBY_EXECUTABLE}")
-endif(RUBY_EXECUTABLE)
-
-message(STATUS "Looking for ruby.h")
-if(RUBY_INCLUDE_DIR)
-message(STATUS "Looking for ruby.h - found")
-else(RUBY_INCLUDE_DIR)
-message(STATUS "Looking for ruby.h - not found")
-endif(RUBY_INCLUDE_DIR)
-
-message(STATUS "Looking for confi.h")
-if(RUBY_CONFIG_INCLUDE_DIR)
-message(STATUS "Looking for config.h - found")
-else(RUBY_CONFIG_INCLUDE_DIR)
-message(STATUS "Looking for config.h - not found")
-endif(RUBY_CONFIG_INCLUDE_DIR)
-
-message(STATUS "Looking for lib ruby")
-if(RUBY_LIBRARY)
-message(STATUS "Looking for lib ruby - found")
-else(RUBY_LIBRARY)
-message(STATUS "Looking for lib ruby - not found")
-endif(RUBY_LIBRARY)
-
-if(RUBY_LIBRARY)
-       set(LIB_RUBY_VERSION "${RUBY_VERSION_MAJOR}.${RUBY_VERSION_MINOR}.${RUBY_VERSION_PATCH}")
-       message(STATUS "Lib ruby version: ${LIB_RUBY_VERSION}")
-       if(RUBY_VERSION_MAJOR MATCHES "1" AND RUBY_VERSION_MINOR MATCHES "9")
-               string(REGEX MATCH "ruby.*[0-9]" RUBY_LIBRARY_NAME ${RUBY_LIBRARY})
-               if(NOT RUBY_LIBRARY_NAME)
-                       set(RUBY_LIBRARY_NAME ruby)
-               endif(NOT RUBY_LIBRARY_NAME)
-               string(REGEX REPLACE "/libruby.*$" "" RUBY_LIBRARY ${RUBY_LIBRARY})
-               SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}-I${RUBY_CONFIG_INCLUDE_DIR} ") #path to config.h
-               string(COMPARE EQUAL "${RUBY_INCLUDE_DIR}" "${RUBY_CONFIG_INCLUDE_DIR}" operation)
-               if(NOT operation)
-                       SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}-I${RUBY_INCLUDE_DIR} ") #path to ruby.h
-               endif(NOT operation)
-               ADD_DEFINITIONS("-I${CMAKE_HOME_DIRECTORY}/src/bindings/ruby -I${CMAKE_HOME_DIRECTORY}/src/simix")
-               SET(HAVE_RUBY 1)
-       else(RUBY_VERSION_MAJOR MATCHES "1" AND RUBY_VERSION_MINOR MATCHES "9")
-               message(STATUS "Warning : Ruby binding need version 1.9.x actually version ${RUBY_VERSION_MAJOR}.${RUBY_VERSION_MINOR}.x")
-               SET(HAVE_RUBY 0)
-       endif(RUBY_VERSION_MAJOR MATCHES "1" AND RUBY_VERSION_MINOR MATCHES "9")
-else(RUBY_LIBRARY)
-       SET(HAVE_RUBY 0)
-endif(RUBY_LIBRARY)
-
-if(NOT RUBY_EXECUTABLE)
-       message(STATUS "Warning : you don't have ruby executable so you can compile and build examples but can't execute them!!!") 
-endif(NOT RUBY_EXECUTABLE)
\ No newline at end of file