This commit is contained in:
meiqi
2026-03-13 20:03:55 +08:00
2 changed files with 25 additions and 17 deletions

26
.gitignore vendored
View File

@@ -1,3 +1,27 @@
# === 编译产物 (Compiled files) ===
# 忽略所有对象文件
*.o *.o
# === 可执行文件 (Executables) ===
# 建议将所有可执行文件产出到 build/ 目录,然后忽略整个目录
build/ build/
*.out # 如果你直接在根目录生成,手动忽略它们(根据你的项目名修改)
server_pc
client_arm
relay_main
# === 编辑器与 IDE (IDE & Editors) ===
# 忽略 VS Code 配置
.vscode/
# 忽略某些编译数据库
compile_commands.json
.clangd/
# === 日志与测试数据 (Logs & Data) ===
# 忽略程序运行生成的日志文件csv, log等
*.log
*.csv
# 忽略测试用的视频或大文件
*.mp4
*.avi
*.dat

16
.vscode/launch.json vendored
View File

@@ -1,16 +0,0 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "OmniSocket",
"type": "lldb",
"request": "launch",
"program": "${workspaceRoot}/build",
"args": [],
"cwd": "${workspaceRoot}"
}
]
}