我已经为C ++设置了VS Code,我创建了一个用于构建的任务和一个用于运行的任务,这是我的tasks.json
文件:
"tasks": [
{
"taskName": "build",
"command": "g++",
"isShellCommand": true,
"showOutput": "always",
"args": ["-g", "${workspaceRoot}/C++/main.cpp"],
"isBuildCommand": true
},{
"taskName": "run",
"command": "${workspaceRoot}/a.out",
"showOutput": "always",
"isShellCommand": true,
"echoCommand": true
}
]
构建运行良好等等,但每当我运行run
任务时VS代码什么都不做,只是左下角出现一个斜线,输出显示为running command$ /home/vitor/Documentos/code/a.out
但是没有不接受任何输入等。
如何在VS Code中设置我的tasks.json
文件以运行C ++?
PS:代码在终端上正常运行