[llvm] r345504 - [git/svn] Ignore Visual Studio's CMakeSettings.json.

Michael Kruse via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 29 07:51:02 PDT 2018


Author: meinersbur
Date: Mon Oct 29 07:51:02 2018
New Revision: 345504

URL: http://llvm.org/viewvc/llvm-project?rev=345504&view=rev
Log:
[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

Modified:
    llvm/trunk/   (props changed)
    llvm/trunk/.gitignore

Propchange: llvm/trunk/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Oct 29 07:51:02 2018
@@ -23,3 +23,4 @@ Debug+Checks
 Debug+Asserts
 Release+Asserts
 build
+CMakeSettings.json

Modified: llvm/trunk/.gitignore
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/.gitignore?rev=345504&r1=345503&r2=345504&view=diff
==============================================================================
--- llvm/trunk/.gitignore (original)
+++ llvm/trunk/.gitignore Mon Oct 29 07:51:02 2018
@@ -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).




More information about the llvm-commits mailing list