diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2024-06-14 19:25:18 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-14 19:25:18 +0300 |
commit | ce889d68706092159dfc4802301d01ff023f05a4 (patch) | |
tree | 26897128a813829821d1ad714a9f19d085c9e95e /mesonbuild/dependencies/boost.py | |
parent | 0352c900bc33ae2796d1e0881986f2163b7e256d (diff) | |
parent | 181c3499fde491650269c236ea639c92f10c6914 (diff) | |
download | meson-ce889d68706092159dfc4802301d01ff023f05a4.zip meson-ce889d68706092159dfc4802301d01ff023f05a4.tar.gz meson-ce889d68706092159dfc4802301d01ff023f05a4.tar.bz2 |
Merge pull request #13307 from mesonbuild/optstorerefactor
Convert OptionStore from a dict to a full class with named methods
Diffstat (limited to 'mesonbuild/dependencies/boost.py')
-rw-r--r-- | mesonbuild/dependencies/boost.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/dependencies/boost.py b/mesonbuild/dependencies/boost.py index cccc0c3..02aa1ea 100644 --- a/mesonbuild/dependencies/boost.py +++ b/mesonbuild/dependencies/boost.py @@ -580,8 +580,8 @@ class BoostDependency(SystemDependency): # MSVC is very picky with the library tags vscrt = '' try: - crt_val = self.env.coredata.options[mesonlib.OptionKey('b_vscrt')].value - buildtype = self.env.coredata.options[mesonlib.OptionKey('buildtype')].value + crt_val = self.env.coredata.optstore.get_value('b_vscrt') + buildtype = self.env.coredata.optstore.get_value('buildtype') vscrt = self.clib_compiler.get_crt_compile_args(crt_val, buildtype)[0] except (KeyError, IndexError, AttributeError): pass |