Skip to content

Commit

Permalink
Merge pull request #513 from mmuetzel/cmake
Browse files Browse the repository at this point in the history
Remove `CMakeParseArguments.cmake` and dependent modules.
  • Loading branch information
raback authored Aug 4, 2024
2 parents 79f25f7 + 646321d commit ebd157e
Show file tree
Hide file tree
Showing 17 changed files with 13 additions and 524 deletions.
138 changes: 0 additions & 138 deletions cmake/Modules/CMakeParseArguments.cmake

This file was deleted.

2 changes: 1 addition & 1 deletion cmake/Modules/FindCHOLMOD.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ IF(UMFPACK_LIBRARIES AND UMFPACK_INCLUDE_DIR)
ENDIF()

# Fall back to manual search
INCLUDE(${CMAKE_ROOT}/Modules/FindPackageHandleStandardArgs.cmake)
INCLUDE(FindPackageHandleStandardArgs)

SET(CHOLMOD_FOUND FALSE)
MESSAGE(STATUS "Finding CHOLMOD")
Expand Down
2 changes: 1 addition & 1 deletion cmake/Modules/FindMMG.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# MMG_LIBRARY - mmg library is
# MMG_INCLUDE_DIR - mmg include dir.

INCLUDE(${CMAKE_ROOT}/Modules/FindPackageHandleStandardArgs.cmake)
INCLUDE(FindPackageHandleStandardArgs)

# If MMG_LIBRARY and MMG_INCLUDE_DIR are already defined, do nothing
IF(MMG_LIBRARY AND MMG_INCLUDE_DIR)
Expand Down
2 changes: 1 addition & 1 deletion cmake/Modules/FindMumps.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# cmake script for finding MUMPS sparse direct solver
INCLUDE(${CMAKE_ROOT}/Modules/FindPackageHandleStandardArgs.cmake)
INCLUDE(FindPackageHandleStandardArgs)

# If Mumps libraries are already defined, do nothing
IF(Mumps_LIBRARIES AND Mumps_INCLUDE_DIR)
Expand Down
2 changes: 1 addition & 1 deletion cmake/Modules/FindNETCDF.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

# # handle the QUIETLY and REQUIRED arguments and set NETCDF_FOUND to TRUE
# if all listed variables are TRUE
INCLUDE(${CMAKE_ROOT}/Modules/FindPackageHandleStandardArgs.cmake)
INCLUDE(FindPackageHandleStandardArgs)

# If NETCDF & NETCDF_FORTRAN libraries are already defined, do nothing
IF(NETCDF_LIBRARIES AND NETCDF_INCLUDE_DIR)
Expand Down
2 changes: 1 addition & 1 deletion cmake/Modules/FindPARMMG.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# PARMMG_LIBRARY - mmg library is
# PARMMG_INCLUDE_DIR - mmg include dir.

INCLUDE(${CMAKE_ROOT}/Modules/FindPackageHandleStandardArgs.cmake)
INCLUDE(FindPackageHandleStandardArgs)

# If MMG_LIBRARY and MMG_INCLUDE_DIR are already defined, do nothing
IF(PARMMG_LIBRARY AND PARMMG_INCLUDE_DIR)
Expand Down
2 changes: 1 addition & 1 deletion cmake/Modules/FindPHDF5.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

# # handle the QUIETLY and REQUIRED arguments and set PHDF5_FOUND to TRUE
# if all listed variables are TRUE
INCLUDE(${CMAKE_ROOT}/Modules/FindPackageHandleStandardArgs.cmake)
INCLUDE(FindPackageHandleStandardArgs)

# If PHDF5 & PHDF5_HL libraries are already defined, do nothing
IF(PHDF5_LIBRARIES AND PHDF5_INCLUDE_DIR)
Expand Down
Loading

0 comments on commit ebd157e

Please sign in to comment.