-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
68 lines (56 loc) · 745 Bytes
/
Copy path.gitignore
File metadata and controls
68 lines (56 loc) · 745 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
# ==============================================
# Camera Matrix Capture - .gitignore
# ==============================================
# Build directories
build/
build-*/
# C++ build outputs
Debug/
Release/
x64/
*.exe
*.dll
*.lib
*.obj
*.pdb
*.exp
*.ilk
# .NET / WinUI build outputs
App/bin/
App/obj/
*.nupkg
# Captured images and data
neural_dataset/
data/
# Settings (user-specific)
settings.ini
# Temporary files
*.tmp
*.temp
*.log
# IDE and editor files
.vs/
.vscode/
*.sln
*.vcxproj*
*.filters
*.user
*.suo
# CMake generated files
CMakeFiles/
CMakeCache.txt
cmake_install.cmake
# Python cache
__pycache__/
*.pyc
*.pyo
# System files
.DS_Store
Thumbs.db
*.swp
*.swo
# ImGui (legacy)
imgui.ini
# Deploy/distribution
deploy/
*.zip