Commit 35f8a454 authored by Simon Praetorius's avatar Simon Praetorius
Browse files

Add a note about installing dune-uggrid

parent d6c76320
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -73,6 +73,15 @@ using Grid = Dune::UGGrid<2>;
auto grid = Dune::GmshReader<Grid>::read("mesh.msh");
```

!!! note
    `dune-uggrid` is not part of the core modules installed by default via
    `./setup-env.sh`.
    If you need the Gmsh + `UGGrid` workflow, install it explicitly:

    ```bash
    ./setup-env.sh --install dune-uggrid
    ```

You can then work on:

```cpp