-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
68 lines (59 loc) · 1.73 KB
/
.gitignore
File metadata and controls
68 lines (59 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# -------------------------
# Build artifacts
# -------------------------
/build/ # CMake build directory
/bin/ # Compiled executables
# Object and binary files (anywhere in the project)
*.o
*.obj
*.lo
*.out
*.exe
*.a
*.so
*.dll
*.dylib
# -------------------------
# CMake generated files
# -------------------------
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
Makefile
# Generated dependency files
*.d
# -------------------------
# Logs & runtime outputs
# -------------------------
*.log
*.trace # Added: runtime traces from profilers/debuggers
*.tmp # Added: misc runtime temp files
# -------------------------
# Neovim / Editor / DAP junk
# -------------------------
*~
*.swp
*.swo # Added: other swap variants
*.swn # Added: swap edge-case
.session # Added: session save states
shada/ # Added: Neovim state history
.gdb_history # Added: debugger command history
*.dSYM/ # Added: macOS crash dumps
# -------------------------
# IDEs & tooling configs
# -------------------------
.DS_Store
.vscode/
.idea/
*.iml # Added: IntelliJ/CLion module files
# -------------------------
# Language Server Protocol (LSP)
# -------------------------
compile_commands.json # Usually regenerated; ignore unless you want to commit it
.cache/ # Added: clangd, ccls, or other LSP caches
# -------------------------
# Testing / Coverage
# -------------------------
*.gcda # Added: GCC coverage data files
*.gcno # Added: GCC coverage notes
*.gcov # Added: GCC coverage reports