Files
agv-control-slam/.gitignore
CaiXiang 240b45c8b0 修复 .gitignore 和 CMakeLists.txt 构建配置
- 修复 .gitignore 忽略所有 txt 文件的问题,改为只忽略特定目录
- 修复 CMakeLists.txt 中 Curtis 控制器链接错误,改用 .lib 文件
- 确保 CMakeLists.txt 不被 git 忽略

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-17 09:11:31 +08:00

38 lines
347 B
Plaintext

# 构建目录
build/
cmake-build-*/
# 编译产物
*.o
*.obj
*.exe
*.out
*.app
*.so
*.dylib
*.a
# IDE 相关
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# 生成的数据文件
*.csv
*.dat
# 只忽略数据目录中的 txt 文件,不忽略 CMakeLists.txt
data/*.txt
output/*.txt
# 可视化图片
*.png
*.jpg
*.pdf
# 临时文件
*.log
*.tmp