From 8eef1e966b3f4f43705a45558b0455c8550275ce Mon Sep 17 00:00:00 2001 From: Wiebe van Breukelen Date: Tue, 12 Aug 2025 09:55:40 +0200 Subject: [PATCH] Add .gitignore --- .gitignore | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f348aa7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,72 @@ +# Generated files +**/.DS_Store +*.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 + +# CMake-related +**/cmake-build-debug +**/CMakeCache.txt +**/cmake_install.cmake +**/install_manifest.txt +**/CMakeFiles/ +**/CTestTestfile.cmake +**/Makefile +**/*.cbp +**/CMakeScripts +**/compile_commands.json +**/CMakeLists.txt.user +**/_deps +**/Testing +**/CMakeUserPresets.json + +# Local +build/**/* +lib/* +bin/* +test/test_runner +*.user* + +# Visual Studio work directory +.vs/ +# Visual Studio build directory +out/ + +# Visual Studio Code +.vscode/ + +# CLion work directory +.idea/ +# CLion build directories +cmake-build-*/ + +# Virtual environments +env +venv +.env +.venv \ No newline at end of file