Files
rustris/.vscode/launch.json
2021-10-02 00:00:15 +09:00

45 lines
1.3 KiB
JSON

{
// IntelliSense を使用して利用可能な属性を学べます。
// 既存の属性の説明をホバーして表示します。
// 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'rustris'",
"cargo": {
"args": [
"build",
"--bin=rustris",
"--package=rustris"
],
"filter": {
"name": "rustris",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'rustris'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=rustris",
"--package=rustris"
],
"filter": {
"name": "rustris",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}