mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
docs: Meson has deprecated the implicit setup command
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5342>
This commit is contained in:
parent
4c5e17308e
commit
2fb819a549
1 changed files with 3 additions and 4 deletions
|
@ -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).
|
||||||
|
|
Loading…
Reference in a new issue