mirror of
https://github.com/Ed94/refactor.git
synced 2024-11-10 04:14:53 -08:00
Ed_
aec095a9f0
Moved header and source to code Changed all build scripts to just be powershell (preferred) Added clang format (but forgot that you cannot format zpl because it hangs clang format) Code changes: * Removed long names just using short names (there is an issue with the opts_compile...) * Removed zpl.refactored.h (its generated now when `.\build.ps1 test` is run * Modified zpl.h to just have the radix sort modification.
40 lines
999 B
JSON
40 lines
999 B
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.h.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.h.refactor"
|
|
],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceRoot}",
|
|
"environment": [],
|
|
"console": "integratedTerminal"
|
|
}
|
|
]
|
|
} |