aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/build.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2022-03-07 16:43:44 +0200
committerGitHub <noreply@github.com>2022-03-07 16:43:44 +0200
commitade6e3a19ed48c058138473a2f543031a1386393 (patch)
treee305c1be971b261090e42bac4dc8effb154cf2cf /mesonbuild/build.py
parent01e92dc543fb7443fba8a33687ffd726f11433e8 (diff)
parentbcf924dc7b7eebfdca83e74da400a060b6be4319 (diff)
downloadmeson-ade6e3a19ed48c058138473a2f543031a1386393.zip
meson-ade6e3a19ed48c058138473a2f543031a1386393.tar.gz
meson-ade6e3a19ed48c058138473a2f543031a1386393.tar.bz2
Merge pull request #10043 from dcbaker/submit/type-checking-for-subproject
Add typing for subproject()
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r--mesonbuild/build.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py
index e0f07ab..6916bcb 100644
--- a/mesonbuild/build.py
+++ b/mesonbuild/build.py
@@ -255,7 +255,7 @@ class Build:
self.test_setups: T.Dict[str, TestSetup] = {}
self.test_setup_default_name = None
self.find_overrides: T.Dict[str, T.Union['Executable', programs.ExternalProgram, programs.OverrideProgram]] = {}
- self.searched_programs = set() # The list of all programs that have been searched for.
+ self.searched_programs: T.Set[str] = set() # The list of all programs that have been searched for.
# If we are doing a cross build we need two caches, if we're doing a
# build == host compilation the both caches should point to the same place.
@@ -279,7 +279,7 @@ class Build:
custom_targets[name] = t
return custom_targets
- def copy(self):
+ def copy(self) -> Build:
other = Build(self.environment)
for k, v in self.__dict__.items():
if isinstance(v, (list, dict, set, OrderedDict)):
@@ -288,11 +288,11 @@ class Build:
other.__dict__[k] = v
return other
- def merge(self, other):
+ def merge(self, other: Build) -> None:
for k, v in other.__dict__.items():
self.__dict__[k] = v
- def ensure_static_linker(self, compiler):
+ def ensure_static_linker(self, compiler: Compiler) -> None:
if self.static_linker[compiler.for_machine] is None and compiler.needs_static_linker():
self.static_linker[compiler.for_machine] = detect_static_linker(self.environment, compiler)