Skip to content

Commit

Permalink
Add .gitignore (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
bretambrose authored Apr 15, 2019
1 parent 5c8b3e0 commit 0bd63cc
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# IDE Artifacts
.metadata
.build
.idea
*.d
Debug
Release
*~
*#
*.iml
tags

#vim swap file
*.swp

#compiled python files
*.pyc

#Vagrant stuff
Vagrantfile
.vagrant

#Mac stuff
.DS_Store

#doxygen
doxygen/html/
doxygen/latex/


#cmake artifacts
dependencies
_build
build
_build_*
cmake-build*

# Compiled Object files
*.slo
*.lo
*.o
*.obj

# Precompiled Headers
*.gch
*.pch

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Fortran module files
*.mod

# Compiled Static libraries
*.lai
*.la
*.a
*.lib

# Executables
*.exe
*.out
*.app

0 comments on commit 0bd63cc

Please sign in to comment.