From 7591d9baf5e862188c7798a64c9fa28910b41555 Mon Sep 17 00:00:00 2001 From: Ajay Date: Sun, 17 Aug 2025 20:07:00 -0400 Subject: [PATCH] add gitignore From https://github.com/github/gitignore/blob/main/C%2B%2B.gitignore + exclude IDE dirs --- .gitignore | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..5112ca62ed --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Linker files +*.ilk + +# Debugger Files +*.pdb + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + +# debug information files +*.dwo + +# IDEs +*.idea +*.vscode