diff options
| author | poek <maciek09874@gmail.com> | 2026-05-11 14:05:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-11 14:05:08 +0200 |
| commit | 42146b18a6a7632bb72b120ac03db6dc2ec82536 (patch) | |
| tree | 36e8027666cd6ccbd1482fcaf62aafa17fadecf8 /.gitignore | |
Initial commit
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0ba1c63 --- /dev/null +++ b/.gitignore @@ -0,0 +1,69 @@ +# 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 +*.so.* + + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + +# Build directories +build/ +Build/ +build-*/ + +# CMake generated files +CMakeFiles/ +CMakeCache.txt +cmake_install.cmake +Makefile +install_manifest.txt +compile_commands.json + +# Temporary files +*.tmp +*.log +*.bak +*.swp + +# vcpkg +vcpkg_installed/ + +# debug information files +*.dwo + +# test output & cache +Testing/ +.cache/ |