-
Notifications
You must be signed in to change notification settings - Fork 230
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a .gitignore with standard content (#3400)
* Added a .gitignore with standard content * Update .gitignore Remove larger build coverage since other line does this. Co-authored-by: Alex Eremin <[email protected]> --------- Co-authored-by: Alex Eremin <[email protected]>
- Loading branch information
1 parent
d16aed9
commit dfb40fe
Showing
1 changed file
with
67 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# Compiled Object files | ||
*.slo | ||
*.lo | ||
*.o | ||
*.obj | ||
|
||
# Precompiled Headers | ||
*.gch | ||
*.pch | ||
*.ipch | ||
|
||
# Compiled Dynamic libraries | ||
*.so | ||
*.dylib | ||
*.dll | ||
|
||
# Fortran module files | ||
*.mod | ||
|
||
# Compiled Static libraries | ||
*.lai | ||
*.la | ||
*.a | ||
*.lib | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
|
||
# vim tags | ||
tags | ||
.tags | ||
.*.swp | ||
|
||
# Editors | ||
.vscode | ||
|
||
# build-in-source directory | ||
|
||
# emacs temporary/backup files | ||
.\#* | ||
\#*\# | ||
*~ | ||
|
||
# GDB temporary files | ||
.gdb_history | ||
install.dir* | ||
|
||
# documentation artifacts | ||
_build/ | ||
_images/ | ||
_static/ | ||
_templates/ | ||
_toc.yml | ||
_doxygen/ | ||
|
||
# JetBrains IDE | ||
.idea/ | ||
cmake-build*/ | ||
build*/ | ||
|
||
# Python virtualenv | ||
.venv/ | ||
|
||
# Python cache | ||
__pycache__/ |