diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-02-05 23:34:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-05 23:34:16 +0200 |
commit | 8978717b6b51652bd455efbb6867f3f5799726c9 (patch) | |
tree | 711bfac83d629ab25de0544247ea449b925f8614 /mesonbuild/environment.py | |
parent | 42931a82e12f79bf2c428fded0f1a9609e1dcb83 (diff) | |
parent | a4e4d2e75a25d4254e13ce0d6e3486f87e2d027a (diff) | |
download | meson-8978717b6b51652bd455efbb6867f3f5799726c9.zip meson-8978717b6b51652bd455efbb6867f3f5799726c9.tar.gz meson-8978717b6b51652bd455efbb6867f3f5799726c9.tar.bz2 |
Merge pull request #6161 from scivision/native_property
add meson.get_external_property()
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r-- | mesonbuild/environment.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index beaff76..554d79b 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -538,6 +538,7 @@ class Environment: coredata.load_configs(self.coredata.config_files)) binaries.build = BinaryTable(config.get('binaries', {})) paths.build = Directories(**config.get('paths', {})) + properties.build = Properties(config.get('properties', {})) ## Read in cross file(s) to override host machine configuration |