.gitignore 1019 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # C/C++ build outputs
  2. bins
  3. gens
  4. libs
  5. objs
  6. # Python virtual environments
  7. python*_virtual_environment
  8. # gcov coverage data
  9. reports
  10. coverage
  11. *.gcno
  12. # profiler output
  13. *.prof
  14. # python compiled objects
  15. *.pyc
  16. #eclipse project files
  17. .cproject
  18. .project
  19. .settings
  20. # cache for run_tests.py
  21. .run_tests_cache
  22. # emacs temp files
  23. *~
  24. # vim temp files
  25. .*.swp
  26. # Makefile's cache
  27. cache.mk
  28. # Temporary test reports
  29. report.xml
  30. latency_trace.txt
  31. latency_trace.*.txt
  32. # port server log
  33. portlog.txt
  34. # gyp generated make files
  35. *-gyp.mk
  36. out
  37. # YCM config files
  38. .ycm_extra_conf.py
  39. # XCode
  40. build/
  41. *.pbxuser
  42. !default.pbxuser
  43. *.mode1v3
  44. !default.mode1v3
  45. *.mode2v3
  46. !default.mode2v3
  47. *.perspectivev3
  48. !default.perspectivev3
  49. xcuserdata
  50. *.xccheckout
  51. *.moved-aside
  52. DerivedData
  53. *.hmap
  54. *.ipa
  55. *.xcuserstate
  56. *.DS_Store
  57. # Objective-C generated files
  58. *.pbobjc.*
  59. *.pbrpc.*
  60. # Cocoapods artifacts
  61. # Podfile.lock and the workspace file are tracked, to ease deleting them. That's
  62. # needed to trigger "pod install" to rerun the preinstall commands.
  63. Pods/