请注意该配置为MAC系统上的。 window系统可以参考此方法去设置
VS Code 版本: 1.94.0
Code Runner 版本: v0.12.2
在VS Code 配置文件(settings.json
)中添加/修改以下配置项。
bash
{
...
"code-runner.executorMap": {
"c": "cd $dir && mkdir -p build && gcc $fileName -o build/$fileNameWithoutExt && $dir/build/$fileNameWithoutExt",
"cpp": "cd $dir && mkdir -p build && g++ $fileName -o build/$fileNameWithoutExt && $dir/build/$fileNameWithoutExt",
}
...
}
mkdir -p build
指定新建的文件夹名,编译后的文件放置区。