We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c8b3e0 commit 0bd63ccCopy full SHA for 0bd63cc
.gitignore
@@ -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