2023-03-12 18:34:55 -07:00
|
|
|
{
|
|
|
|
// Use IntelliSense to learn about possible attributes.
|
|
|
|
// Hover to view descriptions of existing attributes.
|
|
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"name": "Refactor ZPL",
|
|
|
|
"type": "cppvsdbg",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "${workspaceFolder}/build/refactor.exe",
|
|
|
|
"args": [
|
2023-03-13 17:17:12 -07:00
|
|
|
"-src=./thirdparty/zpl.h",
|
|
|
|
"-dst=./Test/zpl.refactored.h",
|
2023-03-12 18:34:55 -07:00
|
|
|
|
2023-03-17 15:12:20 -07:00
|
|
|
"-spec=./Test/zpl.refactor"
|
2023-03-12 18:34:55 -07:00
|
|
|
],
|
|
|
|
"stopAtEntry": false,
|
|
|
|
"cwd": "${workspaceRoot}",
|
|
|
|
"environment": [],
|
2023-03-13 17:17:12 -07:00
|
|
|
"console": "integratedTerminal"
|
2023-03-17 15:12:20 -07:00
|
|
|
},
|
|
|
|
// {
|
|
|
|
// "name": "Refactor ZPL files",
|
|
|
|
// "type": "cppvsdbg",
|
|
|
|
// "request": "launch",
|
|
|
|
// "program": "${workspaceFolder}/build/refactor.exe",
|
|
|
|
// "args": [
|
|
|
|
// "-num=2",
|
|
|
|
|
|
|
|
// "-src=./thirdparty/zpl.h",
|
|
|
|
// "./thirdparty/file.h",
|
|
|
|
|
|
|
|
// "-dst=./Test/zpl.refactored.h",
|
|
|
|
// "./thirdparty/file.refactored.h",
|
|
|
|
|
|
|
|
// "-spec=./Test/zpl.refactor"
|
|
|
|
// ],
|
|
|
|
// "stopAtEntry": false,
|
|
|
|
// "cwd": "${workspaceRoot}",
|
|
|
|
// "environment": [],
|
|
|
|
// "console": "integratedTerminal"
|
|
|
|
// },
|
2023-03-12 18:34:55 -07:00
|
|
|
{
|
|
|
|
"name": "Refactor refactor.c",
|
|
|
|
"type": "cppvsdbg",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "${workspaceFolder}/build/refactor.exe",
|
|
|
|
"args": [
|
2023-07-19 22:03:31 -07:00
|
|
|
"-src=./project/refactor.cpp",
|
|
|
|
"-dst=./Test/refactor.cpp",
|
2023-03-12 18:34:55 -07:00
|
|
|
|
2023-07-19 22:03:31 -07:00
|
|
|
"-spec=./Test/zpl.refactor"
|
2023-03-12 18:34:55 -07:00
|
|
|
],
|
|
|
|
"stopAtEntry": false,
|
|
|
|
"cwd": "${workspaceRoot}",
|
|
|
|
"environment": [],
|
2023-03-13 17:17:12 -07:00
|
|
|
"console": "integratedTerminal"
|
2023-03-12 18:34:55 -07:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|