.gitignore 621 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # Help tools that honor '.gitignore' (redundant for Git itself).
  2. /.git
  3. /CMakeUserPresets.json
  4. # Common build directories
  5. /build*/
  6. # CI jobs that run in symlinked trees produce these artifacts.
  7. /real_work/
  8. /work
  9. # MacOS Finder files.
  10. .DS_Store
  11. # Python compile output.
  12. *.pyc
  13. # See Utilities/Sphinx/tutorial_archive.cmake
  14. /Help/_generated
  15. # CLion work directory
  16. /.idea/
  17. # CLion build directories
  18. /cmake-build-*/
  19. # QtCreator files.
  20. /CMakeLists.txt.user*
  21. # Visual Studio Code
  22. /.vscode/
  23. /.cache/
  24. # Visual Studio work directory
  25. /.vs/
  26. # Visual Studio build directory
  27. /out/
  28. # clang-tidy output
  29. /clang-tidy-fixes.patch