aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/interpreter/kwargs.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2021-11-03 09:50:44 -0700
committerDylan Baker <dylan@pnwbakers.com>2021-11-22 11:28:43 -0800
commitf34013fb08b8d24d570c96084c5d58c5eaf4f5da (patch)
tree3ce788bf439e46f44e40e49d9af7a87a833de811 /mesonbuild/interpreter/kwargs.py
parent75d163f56d8264a4e68343367f0b9580d746e21b (diff)
downloadmeson-f34013fb08b8d24d570c96084c5d58c5eaf4f5da.zip
meson-f34013fb08b8d24d570c96084c5d58c5eaf4f5da.tar.gz
meson-f34013fb08b8d24d570c96084c5d58c5eaf4f5da.tar.bz2
interpreter: use typed_kwargs for project
Diffstat (limited to 'mesonbuild/interpreter/kwargs.py')
-rw-r--r--mesonbuild/interpreter/kwargs.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/mesonbuild/interpreter/kwargs.py b/mesonbuild/interpreter/kwargs.py
index 3eca65c..00dfdfd 100644
--- a/mesonbuild/interpreter/kwargs.py
+++ b/mesonbuild/interpreter/kwargs.py
@@ -195,3 +195,12 @@ class AddTestSetup(TypedDict):
is_default: bool
exclude_suites: T.List[str]
env: build.EnvironmentVariables
+
+
+class Project(TypedDict):
+
+ version: T.Optional[FileOrString]
+ meson_version: T.Optional[str]
+ default_options: T.List[str]
+ license: T.List[str]
+ subproject_dir: str