.gitignore 639 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # Random seed file created by test scripts and sample programs
  2. seedfile
  3. # CMake build artifacts:
  4. CMakeCache.txt
  5. CMakeFiles
  6. CTestTestfile.cmake
  7. cmake_install.cmake
  8. Testing
  9. # CMake generates *.dir/ folders for in-tree builds (used by MSVC projects), ignore all of those:
  10. *.dir/
  11. # MSVC files generated by CMake:
  12. /*.sln
  13. /*.vcxproj
  14. /*.filters
  15. # Test coverage build artifacts:
  16. Coverage
  17. *.gcno
  18. *.gcda
  19. # generated by scripts/memory.sh
  20. massif-*
  21. # MSVC build artifacts:
  22. *.exe
  23. *.pdb
  24. *.ilk
  25. *.lib
  26. # Python build artifacts:
  27. *.pyc
  28. # Generated documentation:
  29. /apidoc
  30. # Editor navigation files:
  31. /GPATH
  32. /GRTAGS
  33. /GSYMS
  34. /GTAGS
  35. /TAGS
  36. /cscope*.out
  37. /tags