diff --git a/doc/setup.md b/doc/setup.md index c7da4f0c..ce96bd3f 100644 --- a/doc/setup.md +++ b/doc/setup.md @@ -55,12 +55,15 @@ we'll assume that you are in a working directory, which may be any directory. _building_ Iguana at this time - you may also just use the top-level source code directory (`.`) -We'll also assume the Iguana source code directory (this repository) is found at -``` -/path/to/iguana +We'll also assume the Iguana source code directory (this repository) is found at `/path/to/iguana` + +Follow guidance in the next 3 steps below; as a quick reference, here are the commands you'll run: +```bash +meson setup --native-file +meson install -C ``` -### Set build options +### 1. Set build options It's recommended to create an INI file to set the build options that you want to use. Copy the example INI file [`meson/build-iguana.ini`](meson/build-iguana.ini) to your working directory: @@ -75,7 +78,7 @@ to help you: ``` See the [note on dependency resolution](dependency_resolution.md) for more guidance. -### Configure your build +### 2.Configure your build Next, start an Iguana build directory; let's call it `build-iguana` (you may choose any name): ```bash meson setup --native-file my-iguana.ini build-iguana /path/to/iguana @@ -83,21 +86,15 @@ meson setup --native-file my-iguana.ini build-iguana /path/to/iguana > [!TIP] > If you _already_ have an Iguana build directory, and you have just changed options in your INI file, add the `--reconfigure` option. -> Alternatively, run -> ```bash -> meson configure build-iguana -D