| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- # IDE / editor
- .vs/
- .vscode/
- .idea/
- .cache/
- .clangd
- *.user
- *.suo
- *.sdf
- *.opensdf
- *.VC.db
- *.VC.opendb
- *.ncb
- # Build outputs
- **/bin/
- **/obj/
- **/build/
- **/out/
- **/Debug/
- **/Release/
- *.obj
- *.o
- *.exe
- *.dll
- *.lib
- *.pdb
- *.ilk
- *.idb
- *.exp
- compile_commands.json
- # Qt generated
- **/moc_*.cpp
- **/qrc_*.cpp
- **/.qmake.stash
- # Third-party binaries (ffmpeg / gstreamer / etc.)
- Client/3rdparty/
- server/3rdparty/
- # Runtime data and logs
- server/data/
- *.log
- # Secrets and local user state
- server/config/config.ini
- **/user.ini
- Client/NIM-cache/*.*
- Client/NIM-SetupFiles/*.*
|