From 182db6cf0e2b64945f475641fb19d78b6d3b1f7b Mon Sep 17 00:00:00 2001 From: Sarah Osborn <30503782+osborn9@users.noreply.github.com> Date: Wed, 14 Dec 2022 13:33:03 -0800 Subject: [PATCH] Update CMake version in install directions (#793) --- INSTALL.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index eadc100b9..d19410515 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -37,7 +37,7 @@ by running `make help`. When building HYPRE without the install target, the libraries and include files are copied into the directories, `src/hypre/lib` and `src/hypre/include`. - + When building with the install target, the libraries and files are copied into the directories specified by the configure option, --prefix=/usr/apps. If none were specified, the default directories are used, hypre/lib and hypre/include. @@ -52,13 +52,13 @@ configuration options on different platforms. It does not actually build the code, but generates input for other "native" build systems such as Make (Unix platforms) or Visual Studio (Windows). Here are the basic steps: -1. First, ensure that CMake version 2.8.8 or later is installed on the system. +1. First, ensure that CMake version 3.13.0 or later is installed on the system. 2. To build the library, run CMake on the top-level HYPRE source directory to generate files appropriate for the native build system. To prevent writing over the Makefiles in HYPRE's configure/make system above, only out-of-source - builds are currently allowed with CMake. Directories `src/cmbuild` and - `src/test/cmbuild` are provided in the release for convenience, but + builds are currently allowed with CMake. The directory `src/cmbuild` + is provided in the release for convenience, but alternative build directories may be created by the user: - Unix: From the `src/cmbuild` directory, type `cmake ..`.