49 lines
768 B
Plaintext
49 lines
768 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
|
|
|
|
# Cap'n Proto generated output (Spike E). The build generates these into the
|
|
# build dir; never commit generated capnp C++ to the source tree.
|
|
/ipc.capnp.c++
|
|
/ipc.capnp.h
|
|
**/E_sandbox_generated/
|
|
|
|
# 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 |