.gitignore 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. # MSVC build artifacts:
  23. *.exe
  24. *.pdb
  25. *.ilk
  26. *.lib
  27. # Python build artifacts:
  28. *.pyc
  29. # CMake generates *.dir/ folders for in-tree builds (used by MSVC projects), ignore all of those:
  30. *.dir/
  31. # Microsoft CMake extension for Visual Studio Code generates a build directory by default
  32. /build/
  33. # Visual Studio artifacts
  34. /visualc/VS2010/.localhistory/
  35. /visualc/VS2010/.vs/
  36. /visualc/VS2010/Debug/
  37. /visualc/VS2010/Release/
  38. /visualc/VS2010/*.vcxproj.filters
  39. /visualc/VS2010/*.vcxproj.user
  40. # Generated documentation:
  41. /apidoc
  42. # PSA Crypto compliance test repo, cloned by test_psa_compliance.py
  43. /psa-arch-tests
  44. # Editor navigation files:
  45. /GPATH
  46. /GRTAGS
  47. /GSYMS
  48. /GTAGS
  49. /TAGS
  50. /cscope*.out
  51. /tags