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.
17 lines
396 B
17 lines
396 B
6 years ago
|
## `include_directories` accepts a string
|
||
|
|
||
|
The `include_directories` keyword argument now accepts plain strings
|
||
|
rather than an include directory object. Meson will transparently
|
||
|
expand it so that a declaration like this:
|
||
|
|
||
|
```meson
|
||
|
executable(..., include_directories: 'foo')
|
||
|
```
|
||
|
|
||
|
Is equivalent to this:
|
||
|
|
||
|
```meson
|
||
|
foo_inc = include_directories('foo')
|
||
|
executable(..., include_directories: inc)
|
||
|
```
|