.gitignore 559 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # Intermediate object files
  2. *.o
  3. *.os
  4. *.so
  5. **/*.a
  6. *~
  7. # libraries and executables
  8. /lib*.*/
  9. .libs
  10. /build/
  11. /bin
  12. *.exe
  13. Release
  14. NewRelease
  15. .DS_Store
  16. *.xcodeproj
  17. *.wav
  18. *.ana
  19. #Generated files if running in-source CMake build
  20. build*/
  21. cmake_install.cmake
  22. CMakeFiles/
  23. CMakeCache.txt
  24. Makefile
  25. Makefile.*
  26. cmake_install.cmake
  27. /cmake_uninstall.cmake
  28. CTestTestfile.cmake
  29. CPackConfig.cmake
  30. CPackSourceConfig.cmake
  31. /CMakeCache.txt
  32. Custom.cmake
  33. .cache/
  34. # created by for example
  35. #cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
  36. # used by clangd lsp
  37. compile_commands.json
  38. .cache/