1
0
mirror of https://github.com/gitattributes/gitattributes.git synced 2025-01-22 16:28:24 -05:00
gitattributes/C++.gitattributes
Trevor Hickey 4d094825d3 Create C++.gitattributes
".out" is debatable, but keep in mind that most compilers creat binaries of "a.out" by default
2015-01-01 01:13:48 -05:00

37 lines
427 B
Plaintext

#sources
*.C text
*.cc text
*.cxx text
*.cpp text
*.c++ text
*.hpp text
*.h text
*.h++ text
*.hh text
# Compiled Object files
*.slo binary
*.lo binary
*.o binary
*.obj binary
# Precompiled Headers
*.gch binary
*.pch binary
# Compiled Dynamic libraries
*.so binary
*.dylib binary
*.dll binary
# Compiled Static libraries
*.lai binary
*.la binary
*.a binary
*.lib binary
# Executables
*.exe binary
*.out binary
*.app binary