diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2023-03-01 12:21:56 -0800 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2023-06-20 16:10:20 -0700 |
| commit | be20e0809f3cee518a49f4c22ce3ca19319ebb33 (patch) | |
| tree | 0ad524dad972c023255f49329b810e34d13631aa /mesonbuild/modules | |
| parent | d0cbda99a3932f2a66c40ba1e1cfe6332e6b68bb (diff) | |
| download | meson-be20e0809f3cee518a49f4c22ce3ca19319ebb33.tar.gz | |
interpreter: allow default_options and override_options as a dict
Diffstat (limited to 'mesonbuild/modules')
| -rw-r--r-- | mesonbuild/modules/cmake.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/cmake.py b/mesonbuild/modules/cmake.py index 25129e64a..d37c832ab 100644 --- a/mesonbuild/modules/cmake.py +++ b/mesonbuild/modules/cmake.py @@ -431,7 +431,7 @@ class CmakeModule(ExtensionModule): 'required': kwargs_['required'], 'options': kwargs_['options'], 'cmake_options': kwargs_['cmake_options'], - 'default_options': [], + 'default_options': {}, 'version': [], } subp = self.interpreter.do_subproject(dirname, 'cmake', kw) |
