fix: llvm toolset is "ClangCL" in VS2019.

pull/8155/head
Luke Elliott 4 years ago committed by Jussi Pakkanen
parent bad0e95cae
commit 1c60fdd847
  1. 2
      mesonbuild/backend/vs2019backend.py

@ -28,7 +28,7 @@ class Vs2019Backend(Vs2010Backend):
if self.environment is not None:
comps = self.environment.coredata.compilers.host
if comps and all(c.id == 'clang-cl' for c in comps.values()):
self.platform_toolset = 'llvm'
self.platform_toolset = 'ClangCL'
elif comps and all(c.id == 'intel-cl' for c in comps.values()):
c = list(comps.values())[0]
if c.version.startswith('19'):

Loading…
Cancel
Save