diff options
author | Johan Bjäreholt <johanthepro@gmail.com> | 2017-09-22 16:16:36 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-09-22 21:29:20 +0300 |
commit | e129cf72783f375a9bd4827ddde95fc085a29f7f (patch) | |
tree | 33dd5cabefffd12d9173555683f7ee00706fa88b /docs | |
parent | 2f6702839e9f1c109230ace33e997b4d06663479 (diff) | |
download | meson-e129cf72783f375a9bd4827ddde95fc085a29f7f.zip meson-e129cf72783f375a9bd4827ddde95fc085a29f7f.tar.gz meson-e129cf72783f375a9bd4827ddde95fc085a29f7f.tar.bz2 |
Replaced references to 'mesonconf'
mesonconf is deprecated and all references of it has been replaced with 'meson configure'
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/Build-options.md | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/docs/markdown/Build-options.md b/docs/markdown/Build-options.md index 54905d5..cb7b19e 100644 --- a/docs/markdown/Build-options.md +++ b/docs/markdown/Build-options.md @@ -42,11 +42,16 @@ prefix = get_option('prefix') ``` It should be noted that you can not set option values in your Meson -scripts. They have to be set externally with the `mesonconf` command -line tool. Running `mesonconf` without arguments in a build dir shows -you all options you can set. To change their values use the `-D` +scripts. They have to be set externally with the `meson configure` command +line tool. Running `meson configure` without arguments in a build dir shows +you all options you can set. + +To change their values use the `-D` option: ```console -$ mesonconf -Doption=newvalue +$ meson configure -Doption=newvalue ``` + + +**NOTE:** If you cannot call `meson configure` you likely have a old version of Meson. In that case you can call `mesonconf` instead, but that is deprecated in newer versions |