我想问一下如何从C ++文件调试一个简单的hello world输出,在启动文件我必须放入可执行文件但是我只创建了一个C ++文件,如何编译它,我已经尝试了一切,请帮助。
{
"version": "0.1.0",
"command": "g++",
"isShellCommand": true,
// compiles and links with debugger information
"args": ["-g", "-o", "main.exe", "main.cpp"],
// without debugger information
// "args": ["-o", "hello.exe", "hello.cpp"],
"showOutput": "always"
}