41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
|
|
{
|
||
|
|
"version": "0.2.0",
|
||
|
|
"configurations": [
|
||
|
|
{
|
||
|
|
"name": "Run (Release)",
|
||
|
|
"type": "cppvsdbg",
|
||
|
|
"request": "launch",
|
||
|
|
"program": "${workspaceFolder}/build/bin/squad_proto.exe",
|
||
|
|
"args": [],
|
||
|
|
"stopAtEntry": false,
|
||
|
|
"cwd": "${workspaceFolder}",
|
||
|
|
"environment": [],
|
||
|
|
"console": "integratedTerminal",
|
||
|
|
"preLaunchTask": "build release"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "Debug",
|
||
|
|
"type": "cppvsdbg",
|
||
|
|
"request": "launch",
|
||
|
|
"program": "${workspaceFolder}/build/bin/squad_proto.exe",
|
||
|
|
"args": [],
|
||
|
|
"stopAtEntry": false,
|
||
|
|
"cwd": "${workspaceFolder}",
|
||
|
|
"environment": [],
|
||
|
|
"console": "integratedTerminal",
|
||
|
|
"preLaunchTask": "build debug"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "Acceptance (--accept)",
|
||
|
|
"type": "cppvsdbg",
|
||
|
|
"request": "launch",
|
||
|
|
"program": "${workspaceFolder}/build/bin/squad_proto.exe",
|
||
|
|
"args": ["--accept"],
|
||
|
|
"stopAtEntry": false,
|
||
|
|
"cwd": "${workspaceFolder}",
|
||
|
|
"console": "integratedTerminal",
|
||
|
|
"preLaunchTask": "build release"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|