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.
16 lines
396 B
16 lines
396 B
## `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) |
|
```
|
|
|