[README] Update meson setup commands.

meson command syntax has changed, update
documentation to reflect this.
This commit is contained in:
Lorenzo Cogotti 2023-05-25 20:11:40 +02:00
parent 10052d7a8d
commit 20d0b9bd44
1 changed files with 4 additions and 4 deletions

View File

@ -54,18 +54,18 @@ process.
The basic steps to configure and build `lonetix` and every utility, with
debug options enabled, is:
```sh
$ git clone https://git.doublefourteen.io/bgp/ubgpsuite.git
$ git clone https://gitea.it/1414codeforge/ubgpsuite.git
$ cd ubgpsuite
$ meson build && cd build
$ meson setup build && cd build
$ ninja
```
In case you want to perform a release build, enable the release configuration,
like this:
```sh
$ git clone https://git.doublefourteen.io/bgp/ubgpsuite.git
$ git clone https://gitea.it/1414codeforge/ubgpsuite.git
$ cd ubgpsuite
$ meson --buildtype=release build && cd build
$ meson setup --buildtype=release build && cd build
$ ninja
```