blob: 2bef8244393306c2a57b54fda05656fb4c786f69 (
plain)
1
2
3
4
5
6
7
8
9
|
## Search directories for `find_program()`
It is now possible to give a list of absolute paths where `find_program()` should
also search, using the `dirs` keyword argument.
For example on Linux `/sbin` and `/usr/sbin` are not always in the `$PATH`:
```meson
prog = find_program('mytool', dirs : ['/usr/sbin', '/sbin'])
```
|