Skip to content
Snippets Groups Projects

docs: run `meson setup` explicitly in build instructions

Merged Vladimír Čunát requested to merge doc-meson-setup into master
1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
+ 4
4
@@ -118,7 +118,7 @@ Following example script will:
.. code-block:: bash
$ meson build_dir --prefix=/tmp/kr --default-library=static
$ meson setup build_dir --prefix=/tmp/kr --default-library=static
$ ninja -C build_dir
$ ninja install -C build_dir
@@ -139,7 +139,7 @@ For complete list of build options create a build directory and run:
.. code-block:: bash
$ meson build_dir
$ meson setup build_dir
$ meson configure build_dir
To customize project build options, use ``-Doption=value`` when creating
@@ -147,7 +147,7 @@ a build directory:
.. code-block:: bash
$ meson build_dir -Ddoc=enabled
$ meson setup build_dir -Ddoc=enabled
... or change options in an already existing build directory:
@@ -181,7 +181,7 @@ target ``doc`` must be called explicitly.
.. code-block:: bash
$ meson build_dir -Ddoc=enabled
$ meson configure build_dir -Ddoc=enabled
$ ninja -C build_dir doc
Tarball
Loading