Files
easyx-mingw64-dev/.vscode/tasks.json
Steven Hobs d8ba288e1d init
2026-03-04 17:47:10 +08:00

32 lines
765 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++.exe 生成活动文件",
"command": "D:\\Sdk\\cc\\mingw64-15.2-msvcrt\\bin\\g++.exe",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-I${workspaceFolder}\\easyx\\include",
"-L${workspaceFolder}\\easyx\\lib64",
"-leasyx",
"-lgdi32",
"-lole32",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": ["$gcc"],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "编译器: D:\\Sdk\\cc\\mingw64-15.2-msvcrt\\bin\\g++.exe"
}
]
}