Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove the stateful model-checking from the archive. It's not working anymore
[simgrid.git] / tools / cmake / Modules / FindLibelf.cmake
diff --git a/tools/cmake/Modules/FindLibelf.cmake b/tools/cmake/Modules/FindLibelf.cmake
deleted file mode 100644 (file)
index 240be29..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-find_path(LIBELF_INCLUDE_DIR "libelf.h"
-  HINTS
-  $ENV{SIMGRID_LIBELF_LIBRARY_PATH}
-  $ENV{LD_LIBRARY_PATH}
-  $ENV{LIBELF_LIBRARY_PATH}
-  PATH_SUFFIXES include/
-  PATHS
-  /opt
-  /opt/local
-  /opt/csw
-  /sw
-  /usr)
-find_library(LIBELF_LIBRARY
-  NAMES elf
-  HINTS
-  $ENV{SIMGRID_LIBELF_LIBRARY_PATH}
-  $ENV{LD_LIBRARY_PATH}
-  $ENV{LIBELF_LIBRARY_PATH}
-  PATH_SUFFIXES lib/
-  PATHS
-  /opt
-  /opt/local
-  /opt/csw
-  /sw
-  /usr)
-set(LIBELF_LIBRARIES "${LIBELF_LIBRARY}")
-
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(
-  Libelf
-  DEFAULT_MSG
-  LIBELF_LIBRARIES
-  LIBELF_INCLUDE_DIR)
-mark_as_advanced(LIBELF_INCLUDE_DIR LIBELF_LIBRARIES)