-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
45 lines (38 loc) · 800 Bytes
/
.gitignore
File metadata and controls
45 lines (38 loc) · 800 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
# --- Build Output ---
# Ignore the entire build folder where CMake generates files
build/
bin/
dist/
# --- Compiled Binaries & Objects ---
# Never commit binaries; use GitHub Releases for the final DLL
*.dll
*.exe
*.so
*.o
*.obj
*.lib
*.a
# --- CMake Generated Files ---
# In case you run cmake in the root by accident
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
Makefile
# --- IDE & Editor Settings ---
# VS Code: Ignore user settings, but KEEP .devcontainer/
.vscode/
# ...but allow shared project config:
!.vscode/c_cpp_properties.json
!.vscode/tasks.json
!.vscode/launch.json
# Visual Studio: Ignore if you ever open it in native VS
.vs/
*.sln
*.vcxproj
*.vcxproj.user
*.vcxproj.filters
# --- OS System Files ---
.DS_Store
Thumbs.db
# --- Local Scripts & Secrets ---
local.settings.bat