Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove CMakeParseArguments.cmake and dependent modules. #513

Merged
merged 2 commits into from
Aug 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading