Skip to content
Snippets Groups Projects
Unverified Commit 99f1e5eb authored by Lars Bilke's avatar Lars Bilke Committed by GitHub
Browse files

[web] Added note on CMake command line vs gui usage.

parent 51b4d7d4
No related branches found
No related tags found
No related merge requests found
...@@ -15,4 +15,22 @@ If something goes wrong when running CMake please try again with an **empty** or ...@@ -15,4 +15,22 @@ If something goes wrong when running CMake please try again with an **empty** or
Please read the CMake output carefully. Often it will tell you what went wrong. Please read the CMake output carefully. Often it will tell you what went wrong.
Also consider using the command line for CMake configuration as lots of CMake options (which modify requirements on third-party libraries) have to be set via the command line **before** CMake ran for the first time. E.g. when building with PETSc the following fails:
- Creating build directory
- Starting CMake Gui
- Click Configure
- Enable option `OGS_USE_PETSC`
When clicking *Configure*, CMake runs without `OGS_USE_PETSC` enabled and picks a VTK library which is not compiled for MPI usage. The picked VTK library is cached and never modified. So when enabling PETSc it still uses the old (and now wrong) VTK library.
So you have to use the CMake command line:
```bash
mkdir build
cd build
cmake ../ogs -DOGS_USE_PETSC=ON
make
```
Check also [Conans troubleshooting page]({{< ref "conan.pandoc" >}}) if you use Conan for dependencies. Check also [Conans troubleshooting page]({{< ref "conan.pandoc" >}}) if you use Conan for dependencies.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment