Skip to content

Commit 246c6a4

Browse files
committed
chore: Update gitignore, credit: https://github.com/github/gitignore
1 parent 854567d commit 246c6a4

1 file changed

Lines changed: 71 additions & 0 deletions

File tree

.gitignore

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,74 @@
1+
# Prerequisites
2+
*.d
3+
4+
# Compiled Object files
5+
*.slo
6+
*.lo
7+
*.o
8+
*.obj
9+
10+
# Precompiled Headers
11+
*.gch
12+
*.pch
13+
14+
# Linker files
15+
*.ilk
16+
17+
# Debugger Files
18+
*.pdb
19+
20+
# Compiled Dynamic libraries
21+
*.so
22+
*.dylib
23+
*.dll
24+
*.so.*
25+
26+
27+
# Fortran module files
28+
*.mod
29+
*.smod
30+
31+
# Compiled Static libraries
32+
*.lai
33+
*.la
34+
*.a
35+
*.lib
36+
37+
# Executables
38+
*.exe
39+
*.out
40+
*.app
41+
42+
# Build directories
43+
build/
44+
Build/
45+
build-*/
46+
47+
# CMake generated files
48+
CMakeFiles/
49+
CMakeCache.txt
50+
cmake_install.cmake
51+
Makefile
52+
install_manifest.txt
53+
compile_commands.json
54+
55+
# Temporary files
56+
*.tmp
57+
*.log
58+
*.bak
59+
*.swp
60+
61+
# vcpkg
62+
vcpkg_installed/
63+
64+
# debug information files
65+
*.dwo
66+
67+
# test output & cache
68+
Testing/
69+
.cache/
70+
71+
# custom
172
.venv/
273
.vs/
374
.vscode/

0 commit comments

Comments
 (0)