You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
612 B
22 lines
612 B
8 years ago
|
{
|
||
|
"version": "0.2.0",
|
||
|
"configurations": [
|
||
|
{
|
||
|
"name": "C++ Launch (Windows)",
|
||
|
"type": "cppvsdbg",
|
||
|
"request": "launch",
|
||
|
"program": "enter program name, for example ${workspaceRoot}/a.exe",
|
||
|
"args": [],
|
||
|
"stopAtEntry": false,
|
||
|
"cwd": "${workspaceRoot}",
|
||
|
"environment": [],
|
||
|
"externalConsole": false
|
||
|
},
|
||
|
{
|
||
|
"name": "C++ Attach (Windows)",
|
||
|
"type": "cppvsdbg",
|
||
|
"request": "attach",
|
||
|
"processId": "${command:pickProcess}"
|
||
|
}
|
||
|
]
|
||
|
}
|