Skip to content

Commit 6e1f16b

Browse files
committed
Git: updated .gitignore file
1 parent 39b5ee9 commit 6e1f16b

File tree

1 file changed

+69
-1
lines changed

1 file changed

+69
-1
lines changed

.gitignore

Lines changed: 69 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,70 @@
1-
# Ignore some directories
1+
# Default build directory
22
build/
3+
cmake-build-debug/
4+
cmake-build-debugwithtests/
5+
cmake-build-release/
6+
7+
# JetBrains files
8+
.idea/
9+
10+
# Prerequisites
11+
*.d
12+
13+
# Object files
14+
*.o
15+
*.ko
16+
*.obj
17+
*.elf
18+
19+
# Linker output
20+
*.ilk
21+
*.map
22+
*.exp
23+
# Compiled Object files
24+
*.slo
25+
*.lo
26+
*.o
27+
*.obj
28+
# Libraries
29+
*.lib
30+
*.a
31+
*.la
32+
*.lo
33+
34+
# Shared objects (inc. Windows DLLs)
35+
*.dll
36+
*.so
37+
*.so.*
38+
*.dylib
39+
# Compiled Dynamic libraries
40+
*.so
41+
*.dylib
42+
*.dll
43+
44+
# Fortran module files
45+
*.mod
46+
*.smod
47+
48+
# Compiled Static libraries
49+
*.lai
50+
*.la
51+
*.a
52+
*.lib
53+
*.i*86
54+
*.x86_64
55+
*.hex
56+
57+
# Debug files
58+
*.dSYM/
59+
*.su
60+
*.idb
61+
*.pdb
62+
63+
# Kernel Module Compile Results
64+
*.mod*
65+
*.cmd
66+
.tmp_versions/
67+
modules.order
68+
Module.symvers
69+
Mkfile.old
70+
dkms.conf

0 commit comments

Comments
 (0)