From d7e73f7c5ccd45c062553df2d40371b9c7dfe29f Mon Sep 17 00:00:00 2001 From: Sasha Rahlin Date: Mon, 4 Mar 2024 23:55:20 -0600 Subject: [PATCH] remove unused cmake files --- cmake/FindHDF5.cmake | 20 -------------------- cmake/FindLAPACKE.cmake | 17 ----------------- 2 files changed, 37 deletions(-) delete mode 100644 cmake/FindHDF5.cmake delete mode 100644 cmake/FindLAPACKE.cmake diff --git a/cmake/FindHDF5.cmake b/cmake/FindHDF5.cmake deleted file mode 100644 index 7f0b80f6..00000000 --- a/cmake/FindHDF5.cmake +++ /dev/null @@ -1,20 +0,0 @@ -# - Find HDF5 -# Find the native HDF5 includes and library -# -# HDF5_INCLUDES - where to find fftw3.h -# HDF5_LIBRARIES - List of libraries when using HDF5. -# HDF5_FOUND - True if HDF5 found. -if (HDF5_INCLUDES) -# Already in cache, be silent -set (HDF5_FIND_QUIETLY TRUE) -endif (HDF5_INCLUDES) -find_path (HDF5_INCLUDES hdf5.h HINTS ENV HDF_INCLUDE_DIR) -find_library (HDF5_LIBRARIES NAMES hdf5 HINTS ENV HDF_LIB_DIR) -find_library (HDF5_HL_LIBRARIES NAMES hdf5_hl HINTS ENV HDF_LIB_DIR) -# handle the QUIETLY and REQUIRED arguments and set HDF5_FOUND to TRUE if -# all listed variables are TRUE -include (FindPackageHandleStandardArgs) -find_package_handle_standard_args (HDF5 DEFAULT_MSG HDF5_LIBRARIES HDF5_INCLUDES) -mark_as_advanced (HDF5_LIBRARIES HDF5_HL_LIBRARIES HDF5_INCLUDES) - - diff --git a/cmake/FindLAPACKE.cmake b/cmake/FindLAPACKE.cmake deleted file mode 100644 index f55b58ff..00000000 --- a/cmake/FindLAPACKE.cmake +++ /dev/null @@ -1,17 +0,0 @@ -# - Find LAPACKE -# Find the native LAPACKE includes and library -# -# LAPACKE_INCLUDES - where to find fftw3.h -# LAPACKE_LIBRARIES - List of libraries when using LAPACKE. -# LAPACKE_FOUND - True if LAPACKE found. -if (LAPACKE_INCLUDES) -# Already in cache, be silent -set (LAPACKE_FIND_QUIETLY TRUE) -endif (LAPACKE_INCLUDES) -find_path (LAPACKE_INCLUDES lapacke.h) -find_library (LAPACKE_LIBRARIES NAMES lapacke) -# handle the QUIETLY and REQUIRED arguments and set LAPACKE_FOUND to TRUE if -# all listed variables are TRUE -include (FindPackageHandleStandardArgs) -find_package_handle_standard_args (LAPACKE DEFAULT_MSG LAPACKE_LIBRARIES LAPACKE_INCLUDES) -mark_as_advanced (LAPACKE_LIBRARIES LAPACKE_INCLUDES)