43 lines
572 B
Plaintext
43 lines
572 B
Plaintext
# Build outputs
|
|
build/
|
|
out/
|
|
_install/
|
|
*.log
|
|
*.tmp
|
|
|
|
# IDE / editor
|
|
.vs/
|
|
.vscode/
|
|
.idea/
|
|
.cache/
|
|
compile_commands.json
|
|
*.user
|
|
*.swp
|
|
*~
|
|
|
|
# vcpkg
|
|
vcpkg/
|
|
vcpkg_installed/
|
|
|
|
# Rust / cargo (Spike F leaf-decoder probe, ADR-0005)
|
|
# Keep the Cargo.toml/lock + src; ignore the build output.
|
|
**/target/
|
|
**/*.rs.bk
|
|
Cargo.lock.bak
|
|
|
|
# OS junk
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Generated packaging output
|
|
dist/
|
|
packaging/*/build/
|
|
packaging/*/*.deb
|
|
packaging/*/*.rpm
|
|
packaging/*/*.AppImage
|
|
packaging/*/*.msi
|
|
packaging/*/*.exe
|
|
packaging/*/*.dmg
|
|
packaging/*/*.pkg
|
|
packaging/*/*.zip
|
|
packaging/*/*.tar.xz |