| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- # Build directories
- build/
- cmake-build-*/
- out/
- # CMake
- CMakeCache.txt
- CMakeFiles/
- cmake_install.cmake
- Makefile
- *.cmake
- !CMakeLists.txt
- # Compiled files
- *.o
- *.a
- *.so
- *.dylib
- *.dll
- *.exe
- # IDE
- .vscode/
- .idea/
- *.swp
- *.swo
- *~
- .DS_Store
- # Compilation database
- compile_commands.json
- # Nix
- result
- result-*
- # Ccache
- .ccache/
- # Debug and temporary files
- *.log
- lumacs_debug*.log
- *_debug.log
- # Test files (use examples/ for committed test files)
- test_*.txt
- test_*.lua
- test_*.cpp
- test_*.sh
- verify_*.lua
- # Claude AI assistant files
- .claude/
- .cache/
- # Temporary directories
- temporary/
- temp/
- # Editor backup files
- *.bak
- *.backup
- *.orig
|