aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mesonbuild/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py
index dc375cc..a4d14d0 100644
--- a/mesonbuild/build.py
+++ b/mesonbuild/build.py
@@ -2242,7 +2242,7 @@ class CustomTarget(Target, CommandBase):
self.typename = 'custom'
# TODO expose keyword arg to make MachineChoice.HOST configurable
super().__init__(name, subdir, subproject, False, MachineChoice.HOST)
- self.dependencies = []
+ self.dependencies: T.List[T.Union[CustomTarget, BuildTarget]] = []
self.extra_depends = []
self.depend_files = [] # Files that this target depends on but are not on the command line.
self.depfile = None