From efc3932be7205355706e220dcc1352ebad4caabf Mon Sep 17 00:00:00 2001
From: Dmitri Naumov <dmitri.naumov@ufz.de>
Date: Wed, 27 Feb 2019 15:29:29 +0100
Subject: [PATCH] Remove FindMGIS.cmake. Now it's a submodule.

---
 scripts/cmake/Find.cmake     |  4 ----
 scripts/cmake/FindMGIS.cmake | 16 ----------------
 2 files changed, 20 deletions(-)
 delete mode 100644 scripts/cmake/FindMGIS.cmake

diff --git a/scripts/cmake/Find.cmake b/scripts/cmake/Find.cmake
index c24ab8dc8bd..254955b29e1 100644
--- a/scripts/cmake/Find.cmake
+++ b/scripts/cmake/Find.cmake
@@ -165,7 +165,3 @@ if(OGS_USE_CVODE)
     find_package(CVODE REQUIRED)
     add_definitions(-DCVODE_FOUND)
 endif()
-
-if(OGS_USE_MFRONT)
-    find_package(MGIS REQUIRED)
-endif()
diff --git a/scripts/cmake/FindMGIS.cmake b/scripts/cmake/FindMGIS.cmake
deleted file mode 100644
index 05d0e7d48aa..00000000000
--- a/scripts/cmake/FindMGIS.cmake
+++ /dev/null
@@ -1,16 +0,0 @@
-# Find the MGIS includes and libraries
-#
-#    MGIS_INCLUDE_DIR - Where to find MGIS headers
-#    MGIS_LIBRARY     - The MGIS library to link against.
-#    MGIS_FOUND       - Do not attempt to use if "no" or undefined.
-#
-# MGIS, the MFront Generic Interface Support library
-# See https://github.com/thelfer/MFrontGenericInterfaceSupport
-#     http://tfel.sourceforge.net/generic-behaviours-interface.html
-
-find_path(MGIS_INCLUDE_DIR MGIS)
-
-find_library(MGIS_LIBRARY MFrontGenericInterface)
-
-include(FindPackageHandleStandardArgs)
-FIND_PACKAGE_HANDLE_STANDARD_ARGS(MGIS DEFAULT_MSG MGIS_LIBRARY MGIS_INCLUDE_DIR)
-- 
GitLab