.gitattributes 570 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Sources
  2. *.c text diff=cpp
  3. *.cc text diff=cpp
  4. *.cxx text diff=cpp
  5. *.cpp text diff=cpp
  6. *.c++ text diff=cpp
  7. *.hpp text diff=cpp
  8. *.h text diff=cpp
  9. *.h++ text diff=cpp
  10. *.hh text diff=cpp
  11. # Compiled Object files
  12. *.slo binary
  13. *.lo binary
  14. *.o binary
  15. *.obj binary
  16. # Precompiled Headers
  17. *.gch binary
  18. *.pch binary
  19. # Compiled Dynamic libraries
  20. *.so binary
  21. *.dylib binary
  22. *.dll binary
  23. # Compiled Static libraries
  24. *.lai binary
  25. *.la binary
  26. *.a binary
  27. *.lib binary
  28. # Executables
  29. *.exe binary
  30. *.out binary
  31. *.app binary