diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-05-23 00:01:29 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-23 00:01:29 +0300 |
commit | 77a933faca44a9629895959ad44dd835ee673fd5 (patch) | |
tree | ca25c7bd40d897b774787b417aafd4a2f68a0e03 /docs/markdown/snippets | |
parent | 44b6ccbe569ec8125f1e95e43a5c449e77a04344 (diff) | |
parent | 06b1f457d5407a5119a2e812527f8fef6a2bf1c3 (diff) | |
download | meson-77a933faca44a9629895959ad44dd835ee673fd5.zip meson-77a933faca44a9629895959ad44dd835ee673fd5.tar.gz meson-77a933faca44a9629895959ad44dd835ee673fd5.tar.bz2 |
Merge pull request #5028 from bonzini/sourceset
new module "sourceset" to match source file lists against configuration data
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/sourceset.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/markdown/snippets/sourceset.md b/docs/markdown/snippets/sourceset.md new file mode 100644 index 0000000..7c09eb5 --- /dev/null +++ b/docs/markdown/snippets/sourceset.md @@ -0,0 +1,8 @@ +## New `sourceset` module + +A new module, `sourceset`, was added to help building many binaries +from the same source files. Source sets associate source files and +dependencies to keys in a `configuration_data` object or a dictionary; +they then take multiple `configuration_data` objects or dictionaries, +and compute the set of source files and dependencies for each of those +configurations. |