0

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

1 に答える 1

0

の代わりに出力ファイル名に${fileBasename}.html

使用する${fileDirname}/${fileBasename}.htm

于 2017-08-28T07:05:18.043 に答える