Advertisement
cartagenae

.gitignore

Apr 18th, 2025
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.34 KB | None | 0 0
  1. #VS files
  2. .vs*
  3. *.vcx*
  4. *.sln
  5. x64
  6. x86
  7.  
  8. # Prerequisites
  9. *.d
  10.  
  11. # Compiled Object files
  12. *.slo
  13. *.lo
  14. *.o
  15. *.obj
  16.  
  17. # Precompiled Headers
  18. *.gch
  19. *.pch
  20.  
  21. # Compiled Dynamic libraries
  22. *.so
  23. *.dylib
  24. *.dll
  25.  
  26. # Fortran module files
  27. *.mod
  28. *.smod
  29.  
  30. # Compiled Static libraries
  31. *.lai
  32. *.la
  33. *.a
  34. *.lib
  35.  
  36. # Executables
  37. *.exe
  38. *.out
  39. *.app
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement