File tree Expand file tree Collapse file tree 1 file changed +66
-0
lines changed Expand file tree Collapse file tree 1 file changed +66
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Created by https://www.gitignore.io/api/c++
2
+
3
+ # ## C++ ###
4
+ # Prerequisites
5
+ * .d
6
+
7
+ # Compiled Object files
8
+ * .slo
9
+ * .lo
10
+ * .o
11
+ * .obj
12
+
13
+ # Precompiled Headers
14
+ * .gch
15
+ * .pch
16
+
17
+ # Compiled Dynamic libraries
18
+ * .so
19
+ * .dylib
20
+ * .dll
21
+
22
+ # Fortran module files
23
+ * .mod
24
+ * .smod
25
+
26
+ # Compiled Static libraries
27
+ * .lai
28
+ * .la
29
+ * .a
30
+ * .lib
31
+
32
+ # Executables
33
+ * .exe
34
+ * .out
35
+ * .app
36
+ /* /* /* /qs
37
+
38
+ # Vim swap
39
+ * .swp
40
+
41
+ # This is a comment
42
+ # Ignore target at the top level
43
+ /build /
44
+ /Build /
45
+ /bin /
46
+ /Bin /
47
+ # Ignore child project's targets as well
48
+ /* /build /
49
+ /* /Build /
50
+ /* /bin /
51
+ /* /Bin /
52
+
53
+ # And any grandchildren ...
54
+ /* /* /build /
55
+ /* /* /Build /
56
+ /* /* /bin /
57
+ /* /* /Bin /
58
+
59
+ # Or you can do:
60
+ * build * /
61
+ * Build * /
62
+ * bin * /
63
+ * Bin * /
64
+
65
+ # which matches 'target' in any sub folder
66
+ * .syntastic_cpp_config
You can’t perform that action at this time.
0 commit comments