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.

57 lines
841 B

2 years ago
  1. config.cfg
  2. # Created by https://www.toptal.com/developers/gitignore/api/linux,c++
  3. # Edit at https://www.toptal.com/developers/gitignore?templates=linux,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. ### Linux ###
  32. *~
  33. # temporary files which can be created if a process still has a handle open of a deleted file
  34. .fuse_hidden*
  35. # KDE directory preferences
  36. .directory
  37. # Linux trash folder which might appear on any partition or disk
  38. .Trash-*
  39. # .nfs files are created when an open file is removed but is still being accessed
  40. .nfs*
  41. # End of https://www.toptal.com/developers/gitignore/api/linux,c++