From e18f8b1c3ef9ab9111b65744001af2ad39dd6b74 Mon Sep 17 00:00:00 2001 From: FG-TUM Date: Thu, 2 Nov 2023 15:37:18 +0100 Subject: [PATCH] Rework .gitignore - Include anything from the github C++ template - Add vscode/ project folder - guess that most vscode students will name their build folder "build" --- .gitignore | 40 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b8a35d2de..95dd022ba 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,40 @@ +# 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 + +# IDE Stuff .idea/ -cmake-build-* +.vscode/ + +# Build folders +cmake-build-*/ +build/