「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"
}
]
}