.gitignore 359 B

123456789101112131415161718192021222324252627282930313233
  1. # C/C++ build outputs
  2. bins
  3. gens
  4. libs
  5. objs
  6. # Python virtual environment (pre-3.4 only)
  7. python2.7_virtual_environment
  8. # gcov coverage data
  9. coverage
  10. *.gcno
  11. # profiler output
  12. *.prof
  13. # python compiled objects
  14. *.pyc
  15. #eclipse project files
  16. .cproject
  17. .project
  18. .settings
  19. # cache for run_tests.py
  20. .run_tests_cache
  21. # emacs temp files
  22. *~
  23. # vim temp files
  24. .*.swp