From 6b8000447a600e0f4a3b071840ed142689b805e8 Mon Sep 17 00:00:00 2001 From: Michael Kruse Date: Mon, 29 Oct 2018 14:51:02 +0000 Subject: [PATCH] [git/svn] Ignore Visual Studio's CMakeSettings.json. When using Visual Studio's built-in support for CMake, the CMakeSettings.json contains the build configurations (build dir, generator, toolchain, cmake variables, etc). It is specific to the build machine, therefore should not be versioned. Differential Revision: https://reviews.llvm.org/D53775 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@345504 91177308-0d34-0410-b5e6-96231b3b80d8 --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 224bd2f3a9c..fd308878407 100644 --- a/.gitignore +++ b/.gitignore @@ -41,6 +41,8 @@ cscope.out autoconf/aclocal.m4 autoconf/autom4te.cache /compile_commands.json +# Visual Studio built-in CMake configuration +/CMakeSettings.json #==============================================================================# # Directories to ignore (do not add trailing '/'s, they skip symlinks).