Skip to content

Commit 995661b

Browse files
committed
Add .gitignore file
1 parent 3085dfb commit 995661b

File tree

1 file changed

+69
-0
lines changed

1 file changed

+69
-0
lines changed

.gitignore

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Prerequisites
2+
*.d
3+
4+
# Object files
5+
*.o
6+
*.ko
7+
*.obj
8+
*.elf
9+
10+
# Linker output
11+
*.ilk
12+
*.map
13+
*.exp
14+
15+
# Precompiled Headers
16+
*.gch
17+
*.pch
18+
19+
# Libraries
20+
*.lib
21+
*.a
22+
*.la
23+
*.lo
24+
25+
# Shared objects (inc. Windows DLLs)
26+
*.dll
27+
*.so
28+
*.so.*
29+
*.dylib
30+
31+
# Executables
32+
*.exe
33+
*.out
34+
*.app
35+
*.i*86
36+
*.x86_64
37+
*.hex
38+
39+
# Debug files
40+
*.dSYM/
41+
*.su
42+
*.idb
43+
*.pdb
44+
45+
# CMake Related
46+
CMakeLists.txt.user
47+
CMakeCache.txt
48+
CMakeFiles
49+
CMakeScripts
50+
Testing
51+
Makefile
52+
cmake_install.cmake
53+
install_manifest.txt
54+
compile_commands.json
55+
CTestTestfile.cmake
56+
_deps
57+
58+
# Mac OSX
59+
.DS_Store
60+
.AppleDouble
61+
.LSOverride
62+
._*
63+
64+
# Microsoft Windows
65+
Thumbs.db
66+
Thumbs.db:encryptable
67+
ehthumbs.db
68+
ehthumbs_vista.db
69+
*.stackdump

0 commit comments

Comments
 (0)