[PATCH] D53775: [git/svn] Ignore Visual Studio's CMakeSettings.json.

Michael Kruse via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 26 13:19:22 PDT 2018


Meinersbur created this revision.
Meinersbur added reviewers: zturner, aaron.ballman, ted, stella.stamenova.

When using Visual Studio's  built-in support for CMake, the CMakeSettings.json <https://blogs.msdn.microsoft.com/vcblog/2016/10/05/cmake-support-in-visual-studio/#configure-cmake> contains the build configurations (build dir, generator, toolchain, cmake variables, etc). It is specific to the build machine, therefore should not be versioned.


https://reviews.llvm.org/D53775

Files:
  .
  .gitignore


Index: .gitignore
===================================================================
--- .gitignore
+++ .gitignore
@@ -41,6 +41,8 @@
 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).


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D53775.171341.patch
Type: text/x-patch
Size: 428 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20181026/845b4365/attachment.bin>


More information about the llvm-commits mailing list