The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
466 B
15 lines
466 B
3 years ago
|
## Warning if check kwarg of run_command is missing
|
||
|
|
||
|
The `check` kwarg of `run_command` currently defaults to `false`.
|
||
|
Because we want to change that, running
|
||
|
```meson
|
||
|
run_command('cmd')
|
||
|
```
|
||
|
now results in:
|
||
|
```text
|
||
|
WARNING: You should add the boolean check kwarg to the run_command call.
|
||
|
It currently defaults to false,
|
||
|
but it will default to true in future releases of meson.
|
||
|
See also: https://github.com/mesonbuild/meson/issues/9300
|
||
|
```
|