.gitignore 371 B

1234567891011121314151617181920212223242526272829303132333435
  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. 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
  25. # Makefile's cache
  26. cache.mk