From 96a6d621bf066e913f03078c4c4c240309e76efe Mon Sep 17 00:00:00 2001 From: Robin Kertels Date: Mon, 8 Jul 2019 17:43:11 +0200 Subject: Add (v)c++latest to VC_VERSION_MAP --- mesonbuild/compilers/cpp.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mesonbuild/compilers/cpp.py') diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py index 718dbdf..16269be 100644 --- a/mesonbuild/compilers/cpp.py +++ b/mesonbuild/compilers/cpp.py @@ -370,9 +370,11 @@ class VisualStudioLikeCPPCompilerMixin: 'vc++11': (True, 11), 'vc++14': (True, 14), 'vc++17': (True, 17), + 'vc++latest': (True, "latest"), 'c++11': (False, 11), 'c++14': (False, 14), 'c++17': (False, 17), + 'c++latest': (False, "latest"), } def get_option_link_args(self, options): -- cgit v1.1