Files
Starworld/.gitignore
MayaTheShy 0ab13cba1a chore: remove build artifacts from git tracking and improve .gitignore
- Remove all Rust target/ build artifacts that were incorrectly committed
- Update .gitignore to exclude:
  - All target/ directories (Rust builds)
  - Compiled binaries (stardust-overte-client, stardust-tests)
  - CMake generated files (preserve CMakeLists.txt)
  - IDE/editor temp files (.swp, .swo, *~)
  - Third-party source directories (molecules, overte-src)
- Add more comprehensive file patterns for compiled artifacts
2025-11-08 19:29:52 -05:00

50 lines
518 B
Plaintext

# Build artifacts
/build/
**/target/
# CMake
CMakeFiles/
CMakeCache.txt
cmake-build-*/
Makefile
*.cmake
!CMakeLists.txt
compile_commands.json
install_manifest.txt
# Compiled binaries
*.o
*.so
*.a
*.exe
*.dll
*.dylib
stardust-overte-client
stardust-tests
# Rust
Cargo.lock
**/target/
**/*.rs.bk
**/debug/
**/release/
# IDE/editor
.vscode/
.idea/
*.user
*.swp
*.swo
*~
# Logs
*.log
# Temporary
*.tmp
.DS_Store
# Third-party directories (not tracked as submodules)
/third_party/molecules/
/third_party/overte-src/