Created
January 10, 2017 06:13
-
-
Save alext234/685d4100b0fb110e874d095797259978 to your computer and use it in GitHub Desktop.
.gitignore for c++ with build directory and vim swap files included
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Compiled Object files | |
*.slo | |
*.lo | |
*.o | |
*.obj | |
# Precompiled Headers | |
*.gch | |
*.pch | |
# Compiled Dynamic libraries | |
*.so | |
*.dylib | |
*.dll | |
# Fortran module files | |
*.mod | |
*.smod | |
# Compiled Static libraries | |
*.lai | |
*.la | |
*.a | |
*.lib | |
# Executables | |
*.exe | |
*.out | |
*.app | |
# build directory typically used with cmake | |
build | |
# vim swap files | |
*.swn | |
*.swp | |
*.swo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment