Skip to content

Commit 0bd63cc

Browse files
authored
Add .gitignore (#32)
1 parent 5c8b3e0 commit 0bd63cc

File tree

1 file changed

+66
-0
lines changed

1 file changed

+66
-0
lines changed

.gitignore

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# IDE Artifacts
2+
.metadata
3+
.build
4+
.idea
5+
*.d
6+
Debug
7+
Release
8+
*~
9+
*#
10+
*.iml
11+
tags
12+
13+
#vim swap file
14+
*.swp
15+
16+
#compiled python files
17+
*.pyc
18+
19+
#Vagrant stuff
20+
Vagrantfile
21+
.vagrant
22+
23+
#Mac stuff
24+
.DS_Store
25+
26+
#doxygen
27+
doxygen/html/
28+
doxygen/latex/
29+
30+
31+
#cmake artifacts
32+
dependencies
33+
_build
34+
build
35+
_build_*
36+
cmake-build*
37+
38+
# Compiled Object files
39+
*.slo
40+
*.lo
41+
*.o
42+
*.obj
43+
44+
# Precompiled Headers
45+
*.gch
46+
*.pch
47+
48+
# Compiled Dynamic libraries
49+
*.so
50+
*.dylib
51+
*.dll
52+
53+
# Fortran module files
54+
*.mod
55+
56+
# Compiled Static libraries
57+
*.lai
58+
*.la
59+
*.a
60+
*.lib
61+
62+
# Executables
63+
*.exe
64+
*.out
65+
*.app
66+

0 commit comments

Comments
 (0)