aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mesonbuild/build.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py
index 8ecb259..1371985 100644
--- a/mesonbuild/build.py
+++ b/mesonbuild/build.py
@@ -2226,6 +2226,11 @@ class BothLibraries(SecondLevelHolder):
raise MesonBugException(f'self._preferred_library == "{self._preferred_library}" is neither "shared" nor "static".')
class CommandBase:
+
+ depend_files: T.List[File]
+ dependencies: T.List[T.Union[BuildTarget, 'CustomTarget']]
+ subproject: str
+
def flatten_command(self, cmd):
cmd = listify(cmd)
final_cmd = []