mirror of
https://github.com/Ed94/refactor.git
synced 2024-11-10 04:14:53 -08:00
61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
// 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": [
|
|
"-src=./thirdparty/zpl.h",
|
|
"-dst=./Test/zpl.refactored.h",
|
|
|
|
"-spec=./Test/zpl.refactor"
|
|
],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceRoot}",
|
|
"environment": [],
|
|
"console": "integratedTerminal"
|
|
},
|
|
// {
|
|
// "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"
|
|
// },
|
|
{
|
|
"name": "Refactor refactor.c",
|
|
"type": "cppvsdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/build/refactor.exe",
|
|
"args": [
|
|
"-source=./refactor.cpp",
|
|
"-destination=./Test/refactor.cpp",
|
|
|
|
"-specification=./Test/zpl.refactor"
|
|
],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceRoot}",
|
|
"environment": [],
|
|
"console": "integratedTerminal"
|
|
}
|
|
]
|
|
} |