.gitignore 330 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Build directories
  2. build/
  3. cmake-build-*/
  4. out/
  5. # CMake
  6. CMakeCache.txt
  7. CMakeFiles/
  8. cmake_install.cmake
  9. Makefile
  10. *.cmake
  11. !CMakeLists.txt
  12. # Compiled files
  13. *.o
  14. *.a
  15. *.so
  16. *.dylib
  17. *.dll
  18. *.exe
  19. lumacs
  20. # IDE
  21. .vscode/
  22. .idea/
  23. *.swp
  24. *.swo
  25. *~
  26. .DS_Store
  27. # Compilation database
  28. compile_commands.json
  29. # Nix
  30. result
  31. result-*
  32. # Ccache
  33. .ccache/