58 lines
630 B
Plaintext
58 lines
630 B
Plaintext
# Build artifacts
|
|
/build/
|
|
/*.o
|
|
/*.obj
|
|
/*.exe
|
|
/*.out
|
|
/*.dll
|
|
/*.so
|
|
/*.dylib
|
|
|
|
# Compiled object and dependency files (in build/)
|
|
build/*.o
|
|
build/*.d
|
|
build/*.d.*
|
|
|
|
# Editor and OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*~
|
|
|
|
# Generated binaries and targets
|
|
/main
|
|
|
|
# Shader SPIR-V outputs
|
|
shaders/*.spv
|
|
|
|
# CMake/Make temporary files
|
|
CMakeFiles/
|
|
CMakeCache.txt
|
|
cmake_install.cmake
|
|
Makefile.user
|
|
|
|
# Coverage and debug
|
|
coverage/
|
|
*.gcda
|
|
*.gcno
|
|
*.prof
|
|
|
|
# Logs and temporary runtime files
|
|
*.log
|
|
*.tmp
|
|
|
|
# Package manager / tooling
|
|
node_modules/
|
|
dist/
|
|
|
|
# Secrets (keep patterns common)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Misc
|
|
tags
|
|
.cache/
|