diff options
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r-- | mesonbuild/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py index 6515f42..7c873b2 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -2362,7 +2362,7 @@ class CustomTarget(Target, CommandBase): install_dir: T.List[T.Union[str, bool]] - def __init__(self, name: str, subdir: str, subproject: str, kwargs: T.Dict[str, T.Any], + def __init__(self, name: str, subdir: str, subproject: str, kwargs: T.Mapping[str, T.Any], absolute_paths: bool = False, backend: T.Optional['Backend'] = None): self.typename = 'custom' # TODO expose keyword arg to make MachineChoice.HOST configurable |