The license-overview file written in commit 7b097fb fell through a
gap in code/.gitignore (the 'deps/*' wildcard catches everything not
explicitly allowed). Added '!deps/THIRD-PARTY-LICENSES.md' to the
exclusion list so the file is actually tracked.
Found by curl-HEADing every link on https://tmoussa.codeberg.page/ConformalLabpp/
— 25/26 links returned 200; only THIRD-PARTY-LICENSES.md was 404
because the file was not in the tree of the preview branch.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
71 lines
820 B
Plaintext
71 lines
820 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
|
|
!deps/THIRD-PARTY-LICENSES.md
|
|
|
|
# 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
|
|
# Exception: mesh data files in code/data/ are not compiled objects
|
|
!data/**/*.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
|
|
|