From d0d88a62a1b2732127ae8e25639523dc66c2dc1e Mon Sep 17 00:00:00 2001 From: Lorenzo Cogotti Date: Sun, 11 Dec 2022 18:35:17 +0100 Subject: [PATCH] [.gitignore] Add .gitignore file. --- .gitignore | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..34e2bca --- /dev/null +++ b/.gitignore @@ -0,0 +1,51 @@ +# meson build directory +build/ + +# exclude test data folders +test/*/ + +# external projects, if any +subprojects/*/ + +# hidden files +.* +!.clang-format +!.clang-tidy +!.gitignore +!.gitmodules + +# KDevelop projects +*.kdev4 + +# 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