1
0

.gitignore 487 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. bin/
  2. # Created by https://www.toptal.com/developers/gitignore/api/c++
  3. # Edit at https://www.toptal.com/developers/gitignore?templates=c++
  4. ### C++ ###
  5. # Prerequisites
  6. *.d
  7. # Compiled Object files
  8. *.slo
  9. *.lo
  10. *.o
  11. *.obj
  12. # Precompiled Headers
  13. *.gch
  14. *.pch
  15. # Compiled Dynamic libraries
  16. *.so
  17. *.dylib
  18. *.dll
  19. # Fortran module files
  20. *.mod
  21. *.smod
  22. # Compiled Static libraries
  23. *.lai
  24. *.la
  25. *.a
  26. *.lib
  27. # Executables
  28. *.exe
  29. *.out
  30. *.app
  31. # End of https://www.toptal.com/developers/gitignore/api/c++