Переезд на .code-workspace
This commit is contained in:
49
minimal/.vscode/launch.json
vendored
Normal file
49
minimal/.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "lldb x64",
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/build/minimal",
|
||||
"cwd": "${workspaceFolder}/build",
|
||||
"preLaunchTask": "asm64",
|
||||
},
|
||||
{
|
||||
"name": "cppdbg x64",
|
||||
"type": "cppdbg",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/build/minimal",
|
||||
"cwd": "${workspaceFolder}/build",
|
||||
"preLaunchTask": "asm64",
|
||||
|
||||
},
|
||||
{
|
||||
"name": "by-gdb x64",
|
||||
"type": "by-gdb",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/build/minimal",
|
||||
"cwd": "${workspaceFolder}/build",
|
||||
"preLaunchTask": "asm64",
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
"name": "gdb x64",
|
||||
"type": "gdb",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/build/minimal",
|
||||
"preLaunchTask": "asm64",
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
"name": "lldb+GCC x64",
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/build/minimal",
|
||||
"cwd": "${workspaceFolder}/build",
|
||||
"preLaunchTask": "asm64+gcc",
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user