diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-07-01 10:15:52 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-07-07 11:21:03 -0700 |
commit | 09d7da19c18d788e48cb46dbf10d791dabdf7eb9 (patch) | |
tree | f7b3aea958fda6b6376d1c246ee99ef4eeef3606 /mesonbuild/interpreter/kwargs.py | |
parent | 3135b130b83c9f4058ae45ff0f6e368e22958c99 (diff) | |
download | meson-09d7da19c18d788e48cb46dbf10d791dabdf7eb9.zip meson-09d7da19c18d788e48cb46dbf10d791dabdf7eb9.tar.gz meson-09d7da19c18d788e48cb46dbf10d791dabdf7eb9.tar.bz2 |
interpreter: use typed_kwargs for include_directories
Diffstat (limited to 'mesonbuild/interpreter/kwargs.py')
-rw-r--r-- | mesonbuild/interpreter/kwargs.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mesonbuild/interpreter/kwargs.py b/mesonbuild/interpreter/kwargs.py index b92b66f..2851e5a 100644 --- a/mesonbuild/interpreter/kwargs.py +++ b/mesonbuild/interpreter/kwargs.py @@ -137,3 +137,8 @@ class FuncInstallMan(TypedDict): class FuncImportModule(ExtractRequired): disabler: bool + + +class FuncIncludeDirectories(TypedDict): + + is_system: bool |