-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
75 lines (62 loc) · 814 Bytes
/
.gitignore
File metadata and controls
75 lines (62 loc) · 814 Bytes
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
75
# === Build Artifacts ===
# CMake out-of-source dirs
build/
out*/
cmake-build-*/
CMakeFiles/
CMakeCache.txt
cmake_install.cmake
Makefile
compile_commands.json
install/
!cmake/install
# Ninja
*.ninja
.ninja_*
# === IDEs & Editors ===
# JetBrains
.idea/
*.iml
# Editor backups
*~
*.swp
*.bak
*.tmp
# === OS-specific ===
.DS_Store
Thumbs.db
ehthumbs.db
# === Tools & Packages ===
# Sanitizer dumps
leak*.txt
san.*.log
# Coverage & profiler
coverage/
*.info
*.gcno
*.gcda
profiler.*
# Conan & vcpkg
conanbuildinfo.*
.cmake/conan*
vcpkg_installed/
vcpkg_buildtrees/
# === Testing & Logs ===
Testing/
test_output/
*.log
*.core
# === Packaging & Archives ===
*.zip
*.tar.gz
*.tgz
*.rpm
# === Documentation Builds ===
docs/_build/
docs/html/
docs/latex/
# === Miscellaneous ===
tmp/
temp/
__pycache__/
*.lock