“shujbjiegouconggou”

This commit is contained in:
2025-07-17 21:05:56 +08:00
commit da0754fbe7
54 changed files with 7033 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{
"tasks":
[
{
"type": "shell",
"label": "C/C++: gcc.exe 生成活动文件",
"command": "D:\\Program Files\\mingw64\\bin\\gcc.exe",
"args":
[
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe",
"-Wall",
"-Werror",
"-std=c++17",
"-fsanitize=address",
"-static-libasan",
"-lws2_32"
],
"options": {"cwd": "${fileDirname}"},
"problemMatcher": ["$gcc"],
"group": {"kind": "build","isDefault": true},
"detail": "调试器生成的任务。"
}
],
"version": "2.0.0"
}