From 26e54c7b2c355bb8e7660b2cd8e70866b877a9fb Mon Sep 17 00:00:00 2001 From: Chris Thrasher Date: Mon, 14 Aug 2023 14:34:31 -0600 Subject: [PATCH] Remove irrelevant entries from .gitignore https://github.com/github/gitignore/blob/main/C%2B%2B.gitignore Our .gitignore file originated from this .gitignore template. This template is made to be general-purpose and thus includes many things we don't care about. We know that the SFML build won't produce files with any of these patterns outside of the binary dir. I alphabetized the list while I was at it. --- .gitignore | 44 +++----------------------------------------- 1 file changed, 3 insertions(+), 41 deletions(-) diff --git a/.gitignore b/.gitignore index 223492a8..d5c236a7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,45 +1,7 @@ -# Prerequisites -*.d - -# Compiled Object files -*.slo -*.lo -*.o -*.obj - -# Precompiled Headers -*.gch -*.pch - -# Compiled Dynamic libraries -*.so -*.dylib -*.dll - -# Fortran module files -*.mod -*.smod - -# Compiled Static libraries -*.lai -*.la -*.a -*.lib - -# Executables -*.exe -*.out -*.app - -# Build folders -build/ -cmake-build-*/ - -# Cache/IDE folders .cache/ -.vscode/ .idea/ .vs/ - -# User configuration +.vscode/ +build/ +cmake-build-*/ CMakeUserPresets.json