You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
829 B

3 years ago
  1. # Created by https://www.toptal.com/developers/gitignore/api/linux,c++
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=linux,c++
  3. ### C++ ###
  4. # Prerequisites
  5. *.d
  6. # Compiled Object files
  7. *.slo
  8. *.lo
  9. *.o
  10. *.obj
  11. # Precompiled Headers
  12. *.gch
  13. *.pch
  14. # Compiled Dynamic libraries
  15. *.so
  16. *.dylib
  17. *.dll
  18. # Fortran module files
  19. *.mod
  20. *.smod
  21. # Compiled Static libraries
  22. *.lai
  23. *.la
  24. *.a
  25. *.lib
  26. # Executables
  27. *.exe
  28. *.out
  29. *.app
  30. ### Linux ###
  31. *~
  32. # temporary files which can be created if a process still has a handle open of a deleted file
  33. .fuse_hidden*
  34. # KDE directory preferences
  35. .directory
  36. # Linux trash folder which might appear on any partition or disk
  37. .Trash-*
  38. # .nfs files are created when an open file is removed but is still being accessed
  39. .nfs*
  40. # End of https://www.toptal.com/developers/gitignore/api/linux,c++