我创建了一个自定义任务,该任务使用emscripten编译我的"C"文件,但输出文件保存在工作区的根目录中。 我想改变这一点,所以编译的文件保存在与我的输入js文件相同的目录中
我的任务.json文件:
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"command": "echo",
"args": ["Hello World"],
"tasks": [
{
"taskName": "Emscripten + HTML",
"type": "shell",
"command": "emcc ${file} -o ${fileBasename}.html"
},
{
"taskName": "Emscripten + Webassemby + html",
"type": "shell",
"command": "emcc ${file} -s WASM=1 -o ${fileBasename}.html"
}
]
}
在输出文件名中而不是${fileBasename}.html
使用${fileDirname}/${fileBasename}.htm