This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
justhomework/.vscode/tasks.json

25 lines
655 B
JSON
Raw Normal View History

2021-10-03 02:28:37 +00:00
{
"tasks": [
{
"type": "cppbuild",
2021-10-21 12:58:58 +00:00
"label": "Compile",
2021-10-29 08:50:06 +00:00
"command": "g++",
2021-10-15 07:23:25 +00:00
"args": [
2021-10-29 08:50:06 +00:00
"${fileDirname}\\*.cpp",
2021-10-15 07:23:25 +00:00
"-g",
2021-10-29 08:50:06 +00:00
// "-fexec-charset=gb2312",
2021-10-15 07:23:25 +00:00
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
2021-10-21 12:58:58 +00:00
"cwd": "C:/Project/mingw64/bin"
2021-10-15 07:23:25 +00:00
},
"problemMatcher": [
"$gcc"
],
"group": "build",
2021-10-21 12:58:58 +00:00
"detail": "编译器: C:/Project/mingw64/bin/g++.exe"
2021-10-03 02:28:37 +00:00
}
],
"version": "2.0.0"
}