.gitignore 1005 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. coverage-summary.txt
  20. # generated by scripts/memory.sh
  21. massif-*
  22. # Eclipse project files
  23. .cproject
  24. .project
  25. /.settings
  26. # MSVC build artifacts:
  27. *.exe
  28. *.pdb
  29. *.ilk
  30. *.lib
  31. # Python build artifacts:
  32. *.pyc
  33. # CMake generates *.dir/ folders for in-tree builds (used by MSVC projects), ignore all of those:
  34. *.dir/
  35. # Microsoft CMake extension for Visual Studio Code generates a build directory by default
  36. /build/
  37. # Generated documentation:
  38. /apidoc
  39. # PSA Crypto compliance test repo, cloned by test_psa_compliance.py
  40. /psa-arch-tests
  41. # Editor navigation files:
  42. /GPATH
  43. /GRTAGS
  44. /GSYMS
  45. /GTAGS
  46. /TAGS
  47. /cscope*.out
  48. /tags