diff options
author | Crend King <975235+CrendKing@users.noreply.github.com> | 2021-11-10 04:11:31 -0800 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2021-11-21 08:08:11 -0500 |
commit | 809792c2233ee0da4127d77f73c3bf715128d33c (patch) | |
tree | 30b94948ff00790e360c5128250b7536d3712ec4 /mesonbuild/cmake/common.py | |
parent | 59245101881ec5e24bc61ec35576ad376a769f40 (diff) | |
download | meson-809792c2233ee0da4127d77f73c3bf715128d33c.zip meson-809792c2233ee0da4127d77f73c3bf715128d33c.tar.gz meson-809792c2233ee0da4127d77f73c3bf715128d33c.tar.bz2 |
Support Visual Studio 2022 backend
Diffstat (limited to 'mesonbuild/cmake/common.py')
-rw-r--r-- | mesonbuild/cmake/common.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/cmake/common.py b/mesonbuild/cmake/common.py index 5cc154c..f6ba5ec 100644 --- a/mesonbuild/cmake/common.py +++ b/mesonbuild/cmake/common.py @@ -44,6 +44,7 @@ backend_generator_map = { 'vs2015': 'Visual Studio 14 2015', 'vs2017': 'Visual Studio 15 2017', 'vs2019': 'Visual Studio 16 2019', + 'vs2022': 'Visual Studio 17 2022', } blacklist_cmake_defs = [ |