.gitignore 458 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. <<<<<<< HEAD
  33. *.make
  34. *.o
  35. *.bin
  36. *.marks
  37. *.includecache
  38. *.internal
  39. *.cbp
  40. *.check_cache
  41. =======
  42. .vs/
  43. #Nuget packages folder
  44. packages/
  45. build/
  46. >>>>>>> origin/yct
  47. .idea/**