diff options
author | Konstantin Kharlamov <Hi-Angel@users.noreply.github.com> | 2018-12-17 13:37:13 +0300 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2018-12-18 10:27:52 -0800 |
commit | f7d2e7c5d5dd5d434006105af20a6780af90cb77 (patch) | |
tree | 9e8fe4ff361f057a922c42af7b0d4ac2c7a502f5 /docs | |
parent | d42a3ae05ffb0495ccff913b9b759e3ad6bd92d1 (diff) | |
download | meson-f7d2e7c5d5dd5d434006105af20a6780af90cb77.zip meson-f7d2e7c5d5dd5d434006105af20a6780af90cb77.tar.gz meson-f7d2e7c5d5dd5d434006105af20a6780af90cb77.tar.bz2 |
[skip ci] Options as `b_ndebug` can also be set in meson.build
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/Builtin-options.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/markdown/Builtin-options.md b/docs/markdown/Builtin-options.md index ce14304..3ab2380 100644 --- a/docs/markdown/Builtin-options.md +++ b/docs/markdown/Builtin-options.md @@ -12,7 +12,8 @@ universal options, base options, compiler options. A list of these options can be found by running `meson --help`. All these can be set by passing to `meson` (aka `meson setup`) in any of -these ways: `--option=value`, `--option value`, `-Doption=value`. +these ways: `--option=value`, `--option value`, `-Doption=value`, or +by setting them inside `default_options` of `project()` in your `meson.build`. They can also be edited after setup using `meson configure`. |