Skip to content

Commit

Permalink
Added a .gitignore with standard content (#3400)
Browse files Browse the repository at this point in the history
* 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
BradPepersAMD and CAHEK7 authored Nov 22, 2024
1 parent d16aed9 commit dfb40fe
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .gitignore
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__/

0 comments on commit dfb40fe

Please sign in to comment.