Files
ConformalLabpp/code/.gitignore
Tarik Moussa b66525039d
All checks were successful
C++ Tests / test (push) Successful in 2m13s
Mirror to Codeberg / mirror (push) Successful in 25s
fix: gitignore – update CMakeLists.txt exception + ignore macOS duplicates
- Exception updated to match renamed CMakeLists.txt (capital M)
- Add "* 2.*" / "* 3.*" patterns to suppress iCloud Drive duplicate
  files (e.g. "clausen 2.hpp") from appearing in git status

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-10 00:22:53 +02:00

68 lines
707 B
Plaintext

# Build artifacts
build/
build_release/
*.o
*.so
*.dylib
*.dll
# Dependencies: Tarballs immer committen, entpackte ignorieren
# exclude alle subdirs von depd without excluding the tarballs and single_includes
deps/*
!deps/tarballs
!deps/single_includes/
!deps/CMakeLists.txt
# macOS iCloud Drive duplicates ("file 2.cpp", "file 2.hpp", …)
* 2.*
* 3.*
bin
# IDEs
.vscode/
.idea/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# ---> C++
# 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