.gitignore 560 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # IDE / editor
  2. .vs/
  3. .vscode/
  4. .idea/
  5. .cache/
  6. .clangd
  7. *.user
  8. *.suo
  9. *.sdf
  10. *.opensdf
  11. *.VC.db
  12. *.VC.opendb
  13. *.ncb
  14. # Build outputs
  15. **/bin/
  16. **/obj/
  17. **/build/
  18. **/out/
  19. **/Debug/
  20. **/Release/
  21. *.obj
  22. *.o
  23. *.exe
  24. *.dll
  25. *.lib
  26. *.pdb
  27. *.ilk
  28. *.idb
  29. *.exp
  30. compile_commands.json
  31. # Qt generated
  32. **/moc_*.cpp
  33. **/qrc_*.cpp
  34. **/.qmake.stash
  35. # Third-party binaries (ffmpeg / gstreamer / etc.)
  36. Client/3rdparty/
  37. server/3rdparty/
  38. # Runtime data and logs
  39. server/data/
  40. *.log
  41. # Secrets and local user state
  42. server/config/config.ini
  43. **/user.ini
  44. Client/NIM-cache/*.*
  45. Client/NIM-SetupFiles/*.*