Подготовлено рабочее пространство
This commit is contained in:
30
.vscode/launch.json
vendored
Normal file
30
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"name": "<file>: lldb debug x64",
|
||||
"program": "${fileDirname}/build/${fileBasenameNoExtension}",
|
||||
"cwd": "${fileDirname}/build",
|
||||
"preLaunchTask": "asm64"
|
||||
},
|
||||
{
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"name": "<file>: lldb+GCC debug x64",
|
||||
"program": "${fileDirname}/build/${fileBasenameNoExtension}",
|
||||
"cwd": "${fileDirname}/build",
|
||||
"preLaunchTask": "asm64+gcc"
|
||||
},
|
||||
|
||||
{
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"name": "minimal: lldb debug x64",
|
||||
"program": "${workspaceFolder}/minimal/build/minimal",
|
||||
"cwd": "${workspaceFolder}/minimal/build"
|
||||
// TODO тут требуется ещё указать задачу сборки minimal, но её ещё нет
|
||||
},
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user