.gitignore 295 B

12345678910111213141516171819202122232425262728
  1. # editor swap files
  2. .*.sw*
  3. .*~
  4. *~
  5. # images
  6. *.jpg
  7. *.png
  8. /files/
  9. # cmake
  10. CMakeCache.txt
  11. CMakeFiles
  12. CMakeScripts
  13. Makefile
  14. cmake_install.cmake
  15. install_manifest.txt
  16. compile_commands.json
  17. CTestTestfile.cmake
  18. /build/
  19. # generated code (unit tests)
  20. Test*.cpp
  21. # executables
  22. /lines
  23. unittest_*
  24. gmon.out