143 lines
2.2 KiB
Plaintext
143 lines
2.2 KiB
Plaintext
# ============================================
|
|
# Easy2D 项目 Git 忽略配置
|
|
# ============================================
|
|
|
|
# --------------------------------------------
|
|
# 构建输出目录
|
|
# --------------------------------------------
|
|
/build/
|
|
/bin/
|
|
/obj/
|
|
/out/
|
|
/Debug/
|
|
/Release/
|
|
/x64/
|
|
/x86/
|
|
/.build/
|
|
/.trae/
|
|
/FlappyBird/
|
|
# --------------------------------------------
|
|
# xmake 构建系统
|
|
# --------------------------------------------
|
|
/.xmake/
|
|
/.xmake.conf
|
|
/xmake.config
|
|
|
|
# --------------------------------------------
|
|
# IDE 和编辑器配置
|
|
# --------------------------------------------
|
|
# Visual Studio
|
|
.vs/
|
|
*.sln
|
|
*.vcxproj
|
|
*.vcxproj.filters
|
|
*.vcxproj.user
|
|
*.suo
|
|
*.user
|
|
*.userosscache
|
|
*.sdf
|
|
*.opensdf
|
|
*.VC.db
|
|
*.VC.opendb
|
|
ipch/
|
|
|
|
# VS Code
|
|
.vscode/
|
|
!.vscode/settings.json
|
|
!.vscode/tasks.json
|
|
!.vscode/launch.json
|
|
!.vscode/extensions.json
|
|
*.code-workspace
|
|
|
|
# CLion / IntelliJ
|
|
.idea/
|
|
*.iml
|
|
*.iws
|
|
*.ipr
|
|
cmake-build-*/
|
|
|
|
# --------------------------------------------
|
|
# 编译缓存和索引
|
|
# --------------------------------------------
|
|
/.cache/
|
|
/.clangd/
|
|
/compile_commands.json
|
|
.clang-format
|
|
.clang-tidy
|
|
|
|
# --------------------------------------------
|
|
# 依赖和包管理
|
|
# --------------------------------------------
|
|
/packages/
|
|
/deps/
|
|
/third_party/
|
|
/vendor/
|
|
|
|
# --------------------------------------------
|
|
# 生成的文件
|
|
# --------------------------------------------
|
|
*.exe
|
|
*.dll
|
|
*.lib
|
|
*.a
|
|
*.so
|
|
*.dylib
|
|
*.pdb
|
|
*.ilk
|
|
*.exp
|
|
*.manifest
|
|
*.res
|
|
*.o
|
|
*.obj
|
|
|
|
# --------------------------------------------
|
|
# 日志和临时文件
|
|
# --------------------------------------------
|
|
*.log
|
|
*.tmp
|
|
*.temp
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# --------------------------------------------
|
|
# 测试和覆盖率
|
|
# --------------------------------------------
|
|
/test-results/
|
|
/coverage/
|
|
*.gcov
|
|
*.gcda
|
|
*.gcno
|
|
|
|
# --------------------------------------------
|
|
# 文档生成
|
|
# --------------------------------------------
|
|
/docs/html/
|
|
/docs/latex/
|
|
/doxygen/
|
|
|
|
# --------------------------------------------
|
|
# 平台特定
|
|
# --------------------------------------------
|
|
# Windows
|
|
*.bat
|
|
*.cmd
|
|
|
|
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
# Linux
|
|
*.d
|
|
|
|
# --------------------------------------------
|
|
# 其他
|
|
# --------------------------------------------
|
|
*.zip
|
|
*.tar.gz
|
|
*.rar
|
|
*.7z
|