-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
27 lines (19 loc) · 813 Bytes
/
.gitignore
File metadata and controls
27 lines (19 loc) · 813 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
# --- Build artifacts ---
# Ignore the entire build directory. This is where CMake places all compiled
# object files, libraries, and your final executable. It should never be
# tracked in source control as it can be regenerated by anyone with the source.
/build/
# --- VS Code specific files ---
# Ignore the .vscode directory. This folder contains user-specific settings,
# launch configurations, and workspace data that shouldn't be shared with
# other collaborators.
.vscode/
# --- macOS specific files ---
# Ignore the .DS_Store file, which is automatically created by macOS Finder
# in directories to store custom attributes of its containing folder.
.DS_Store
# --- Other common files to ignore ---
# Ignore any compiled object files that might be created outside the build folder.
*.o
*.out
/venv/