我已经创建了一个自定义任务来编译我的" C"使用emscripten的文件,但输出文件保存在我的工作区的根目录下。 我想更改它,因此编译的文件保存在与输入js文件相同的目录中
我的task.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"
}
]
}
答案 0 :(得分:0)
而不是${fileBasename}.html
使用${fileDirname}/${fileBasename}.htm