-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
74 lines (66 loc) · 1.31 KB
/
.gitignore
File metadata and controls
74 lines (66 loc) · 1.31 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
68
69
70
71
72
73
74
# --- Build & Compiled Output ---
# Your main build folder from the Makefile
/build/
# Other common CMake build folders (if colleagues use CLion)
/cmake-build-*/
/bin/
/lib/
# Compiled object files
*.o
*.obj
*.so
*.a
*.dylib
*.dll
# --- CMake Specifics ---
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
install_manifest.txt
# CMake User Presets (local paths, do not commit to repo!)
CMakeUserPresets.json
# --- Clang / LLVM / Tooling ---
# Important for LSP server (clangd), often as a symlink in root
compile_commands.json
# Clangd Cache
.cache/
.clangd/
# --- Testing & Coverage (Matching your Makefile) ---
# Your LCOV and LLVM profile data
*.profraw
*.profdata
*.lcov
*.info
# Coverage HTML reports (if you run genhtml)
/coverage_report/
# Test results (JUnit xml etc.)
*.xml
*.gcov
# --- Dependencies ---
# CMake FetchContent download folder (important for Snyk scan)
/_deps/
# External libs, if placed manually (Pitchfork Layout)
/external/
# --- IDEs & Editors ---
# VS Code (User settings do not belong in the repo)
.vscode/
# IntelliJ / CLion
.idea/
# Vim / Neovim Swap Files
*.swp
*.swo
*.swn
# --- Documentation ---
# Doxygen Output
/docs/html/
/docs/latex/
/docs/xml/
/doxygen.log
# --- OS Specifics ---
# Linux
.directory
*~
# Mac (If a colleague uses Macs)
.DS_Store
# Windows (If a colleague uses Windows)
Thumbs.db