[PATCH] D18498: Auto-install Clang Visual Studio visualizers for VS2015 and up

Mike Spertus via cfe-commits cfe-commits at lists.llvm.org
Sun Mar 27 09:28:58 PDT 2016


mspertus added a comment.

In http://reviews.llvm.org/D18498#384233, @zturner wrote:

> For vs2015, the files still need to be in the project right? (In the
>  vcxproj with a <natvis> tag)


This change puts the natvis files in the project for VS2015 but it appears to use the `none` tag

  <?xml version="1.0" encoding="UTF-8"?>
  <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <ItemGroup>
      <CustomBuild Include="D:\t2\llvm\tools\clang\CMakeLists.txt" />
    </ItemGroup>
    <ItemGroup>
      <None Include="D:\t2\llvm\tools\clang\utils\clang.natvis" />
    </ItemGroup>
    <ItemGroup>
    </ItemGroup>
  </Project>
  
  It does seem to work correctly though... Whaddaya think?


http://reviews.llvm.org/D18498





More information about the cfe-commits mailing list