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.
12 lines
426 B
12 lines
426 B
3 years ago
|
## `add_project_dependencies()` function
|
||
|
|
||
|
Dependencies can now be added to all build products using
|
||
|
`add_project_dependencies()`. This can be useful in several
|
||
|
cases:
|
||
|
|
||
|
* with special dependencies such as `dependency('threads')`
|
||
|
* with system libraries such as `find_library('m')`
|
||
|
* with the `include_directories` keyword argument of
|
||
|
`declare_dependency()`, to add both source and build
|
||
|
directories to the include search path
|