diff options
author | Remi Thebault <remi.thebault@gmail.com> | 2022-03-02 23:23:51 +0100 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2022-03-03 08:42:56 -0800 |
commit | 4fe6f0dd2909d768bc764a39e24f16daf6e870e7 (patch) | |
tree | 5019d0ed01c1a21aa555f5d74acc5aab76c01ecc /mesonbuild/build.py | |
parent | 2bcc204a11073628e95f01181a0b037d81b64178 (diff) | |
download | meson-4fe6f0dd2909d768bc764a39e24f16daf6e870e7.zip meson-4fe6f0dd2909d768bc764a39e24f16daf6e870e7.tar.gz meson-4fe6f0dd2909d768bc764a39e24f16daf6e870e7.tar.bz2 |
add D features to InternalDependency
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r-- | mesonbuild/build.py | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py index 47e4a1d..bb57ec8 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -13,7 +13,7 @@ # limitations under the License. from __future__ import annotations -from collections import OrderedDict +from collections import defaultdict, OrderedDict from dataclasses import dataclass, field from functools import lru_cache import copy @@ -710,7 +710,7 @@ class BuildTarget(Target): self.extra_args: T.Dict[str, T.List['FileOrString']] = {} self.sources: T.List[File] = [] self.generated: T.List['GeneratedTypes'] = [] - self.d_features = {} + self.d_features = defaultdict(list) self.pic = False self.pie = False # Track build_rpath entries so we can remove them at install time @@ -1092,7 +1092,7 @@ class BuildTarget(Target): dlist = stringlistify(kwargs.get('d_args', [])) self.add_compiler_args('d', dlist) - dfeatures = dict() + dfeatures = defaultdict(list) dfeature_unittest = kwargs.get('d_unittest', False) if dfeature_unittest: dfeatures['unittest'] = dfeature_unittest @@ -1301,6 +1301,13 @@ class BuildTarget(Target): for dep in deps: if dep in self.added_deps: continue + + dep_d_features = dep.d_features + + for feature in ('versions', 'import_dirs'): + if feature in dep_d_features: + self.d_features[feature].extend(dep_d_features[feature]) + if isinstance(dep, dependencies.InternalDependency): # Those parts that are internal. self.process_sourcelist(dep.sources) @@ -1315,7 +1322,7 @@ class BuildTarget(Target): [], dep.get_compile_args(), dep.get_link_args(), - [], [], [], [], {}) + [], [], [], [], {}, [], []) self.external_deps.append(extpart) # Deps of deps. self.add_deps(dep.ext_deps) |