diff options
author | Brad King <brad.king@kitware.com> | 2023-03-24 22:55:58 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-03-27 20:20:07 (GMT) |
commit | 8b094845885df32cdfc9a0e574519d41624ca811 (patch) | |
tree | a79cb2676cd6ef761c072a5088eb3fe37d751fca /.gitignore | |
parent | c96f97701728c56827092ba562ecb4f44bda0c76 (diff) | |
download | CMake-8b094845885df32cdfc9a0e574519d41624ca811.zip CMake-8b094845885df32cdfc9a0e574519d41624ca811.tar.gz CMake-8b094845885df32cdfc9a0e574519d41624ca811.tar.bz2 |
gitignore: Pin directory exclusions to top-level
Previously, new files in test directories named `Build*` on
case-insensitive filesystems were being incorrectly ignored.
While at it, add more comments justifying some entries.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 37 |
1 files changed, 20 insertions, 17 deletions
@@ -1,27 +1,30 @@ +/CMakeUserPresets.json + # Common build directories -build*/ +/build*/ -# Exclude MacOS Finder files. +# MacOS Finder files. .DS_Store -*.user* - +# Python compile output. *.pyc -Help/_generated -Testing -CMakeUserPresets.json +# See Utilities/Sphinx/tutorial_archive.cmake +/Help/_generated -# Visual Studio work directory -.vs/ -# Visual Studio build directory -out/ +# CLion work directory +/.idea/ +# CLion build directories +/cmake-build-*/ + +# QtCreator files. +/CMakeLists.txt.user* # Visual Studio Code -.vscode/ -.cache/ +/.vscode/ +/.cache/ -# CLion work directory -.idea/ -# CLion build directories -cmake-build-*/ +# Visual Studio work directory +/.vs/ +# Visual Studio build directory +/out/ |