docs: Meson has deprecated the implicit setup command

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5342>
This commit is contained in:
Leif Andersen 2023-09-18 00:30:58 +00:00 committed by GStreamer Marge Bot
parent 4c5e17308e
commit 2fb819a549

View file

@ -93,14 +93,13 @@ Configuring a module (or several in one go when in gst-build) is done by
executing: executing:
``` shell ``` shell
meson <build_directory> meson setup <build_directory>
``` ```
The `build_directory` is where all the build instructions and output will be The `build_directory` is where all the build instructions and output will be
located (This is also called *"out of directory"* building). If the directory is located (This is also called *"out of directory"* building). If the directory is
not created it will be done so at this point. Note that calling `meson` without not created it will be done so at this point. Note that older versions of `meson`
any *command* argument is implicitly calling the `meson setup` command (i.e. to could run without any *command* argument, this is now deprecated.
do the initial configuration of a project).
There is only one restriction regarding the location of the `build_directory`: There is only one restriction regarding the location of the `build_directory`:
it can't be the same as the source directory (i.e. where you cloned your module). it can't be the same as the source directory (i.e. where you cloned your module).