From aa4f7a5e2422169d48342e369597f463ab666558 Mon Sep 17 00:00:00 2001 From: Vratislav Podzimek Date: Wed, 15 Mar 2023 11:34:03 +0100 Subject: [PATCH] Add CMake artifacts to .gitignore (#139) Otherwise they cause noise when this library is used as a git submodule and a CMake subdirectory in a project like this: Changes not staged for commit: (use "git add ..." to update what will be committed) (use "git restore ..." to discard changes in working directory) (commit or discard the untracked or modified content in submodules) modified: vendor/expected (untracked content) Running `cmake .` in such a project creates CMake artifacts and then `git status` reports them "untracked content". Signed-off-by: Vratislav Podzimek --- .gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitignore b/.gitignore index 7876dc6..0418fbd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,12 @@ \#* .\#* /build/ + +# CMake +CMakeFiles/ +CTestTestfile.cmake +cmake_install.cmake +tl-expected-config-version.cmake +tl-expected-config.cmake + +Makefile