aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/interpreter/kwargs.py
diff options
context:
space:
mode:
authorTristan Partin <tristan@partin.io>2021-08-25 12:33:06 -0500
committerDylan Baker <dylan@pnwbakers.com>2021-08-26 09:51:33 -0700
commit959e1bb2e396fbc4969374121e625fadef701e02 (patch)
tree827e1212bc35880a3aae416a20d0cd50994c305f /mesonbuild/interpreter/kwargs.py
parent1dce556dc25c15eeaad4847c5e49fb5ee5eda8cb (diff)
downloadmeson-959e1bb2e396fbc4969374121e625fadef701e02.zip
meson-959e1bb2e396fbc4969374121e625fadef701e02.tar.gz
meson-959e1bb2e396fbc4969374121e625fadef701e02.tar.bz2
Add typed_kwargs to add_languages()
Diffstat (limited to 'mesonbuild/interpreter/kwargs.py')
-rw-r--r--mesonbuild/interpreter/kwargs.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/mesonbuild/interpreter/kwargs.py b/mesonbuild/interpreter/kwargs.py
index dc9585d..77826cb 100644
--- a/mesonbuild/interpreter/kwargs.py
+++ b/mesonbuild/interpreter/kwargs.py
@@ -152,3 +152,7 @@ class FuncImportModule(ExtractRequired):
class FuncIncludeDirectories(TypedDict):
is_system: bool
+
+class FuncAddLanguages(ExtractRequired):
+
+ native: T.Optional[bool]