summaryrefslogtreecommitdiff
path: root/docs/yaml/functions/declare_dependency.yaml
AgeCommit message (Collapse)Author
2025-07-22Docs: standardize between list and array as arrayDylan Baker
When arrays were added they were called arrays. Because the are implemented with Python lists, that language started leaking into talking about Meson types. This is confusing. I've attempted, as much as possible, to move to using one name, array. I picked array because 1) It's the original name used, and 2) what Meson has are more properly arrays as they have a fixed length, while a critical property of lists are the ability to link and unlink them. There are a couple of places where the list language has leaked into the names of keyword arguments. I have not made any attempt to change those, I don't know if it's that useful or not.
2025-01-21docs: clarify use cases for declare_dependency()LaserEyess
2023-04-20extra_files keyword in declare_dependency()Charles Brunet
2023-01-04document declare_dependency(object: ...)Paolo Bonzini
2022-06-17docs: d_module_versions has an undocumented ability to accept integersEli Schwartz
Dlang uses both integer version "levels" and arbitrary string identifiers, and we support both, but don't mention it in the docs. Also update a test case to pass one via declare_dependency. We already test this kwarg for build_target.
2022-06-17docs: fix incorrect info for declare_dependency sourcesEli Schwartz
The type information is clearly wrong as it disagrees with the description w.r.t. generated headers. We also rely on it accepting custom targets for the obvious reason that we accept it in a build target too! In fact, we rely on this in the testsuite too.
2022-05-02complete documentation of declare_dependencyRemi Thebault
2021-10-03docs: Add the YAML Reference manualDaniel Mensinger