.gitignore 489 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. *.txt
  2. *.cmake
  3. *.out
  4. #ignore thumbnails created by windows
  5. Thumbs.db
  6. #Ignore files build by Visual Studio
  7. *.obj
  8. *.exe
  9. *.pdb
  10. *.user
  11. *.aps
  12. *.pch
  13. *.vspscc
  14. *_i.c
  15. *_p.c
  16. *.ncb
  17. *.suo
  18. *.tlb
  19. *.tlh
  20. *.bak
  21. *.cache
  22. *.ilk
  23. *.log
  24. [Bb]in
  25. [Dd]ebug*/
  26. *.lib
  27. *.sbr
  28. obj/
  29. [Rr]elease*/
  30. _ReSharper*/
  31. [Tt]est[Rr]esult*
  32. *.make
  33. *.o
  34. *.bin
  35. *.marks
  36. *.includecache
  37. *.internal
  38. *.cbp
  39. *.check_cache
  40. .vs/
  41. #Nuget packages folder
  42. packages/
  43. build/
  44. .vscode/**
  45. .idea/**
  46. cmake-build-debug/**
  47. .idea/**
  48. cmake-build-debug/*
  49. .vscode/*