diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-04-09 22:51:38 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-04-09 22:51:38 +0300 |
commit | 67f5a37261def7f04a34f0e2c120bf2c027b9227 (patch) | |
tree | e4616a940576b27a8da8c69c71170dd8adb78e94 /mesonbuild/coredata.py | |
parent | 67ca2d5bdce2d48e569d7bf4ebdbecc9f2e28ebf (diff) | |
download | meson-vs2019.tar.gz |
Add support for VS2019. Closes #4640.vs2019
Diffstat (limited to 'mesonbuild/coredata.py')
-rw-r--r-- | mesonbuild/coredata.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/coredata.py b/mesonbuild/coredata.py index 739f6e771..6b865299a 100644 --- a/mesonbuild/coredata.py +++ b/mesonbuild/coredata.py @@ -29,7 +29,7 @@ import configparser from typing import Optional, Any, TypeVar, Generic, Type version = '0.50.999' -backendlist = ['ninja', 'vs', 'vs2010', 'vs2015', 'vs2017', 'xcode'] +backendlist = ['ninja', 'vs', 'vs2010', 'vs2015', 'vs2017', 'vs2019', 'xcode'] default_yielding = False |