mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2024-12-04 19:23:28 +01:00
Green Sky
f27300a8fa
it has the important stuff, but still misses conviniences like buffers and optimizations like varints. only works for little endian but theoretically only needs endian detection to be able to support bigendian
29 lines
589 B
JSON
29 lines
589 B
JSON
{
|
|
"configurations": {
|
|
"run_ctest_native": {
|
|
"default": true,
|
|
"adapter": "CodeLLDB",
|
|
"configuration": {
|
|
"request": "launch",
|
|
"stopOnEntry": true,
|
|
"console": "integratedTerminal",
|
|
"program": "ctest",
|
|
"cwd": "${workspaceRoot}/build"
|
|
}
|
|
},
|
|
"run_native": {
|
|
"adapter": "CodeLLDB",
|
|
"variables": {
|
|
"Executable": "s6zer_test"
|
|
},
|
|
"configuration": {
|
|
"request": "launch",
|
|
"stopOnEntry": true,
|
|
"console": "integratedTerminal",
|
|
"program": "${workspaceRoot}/build/bin/${Executable}",
|
|
"cwd": "${workspaceRoot}/build"
|
|
}
|
|
}
|
|
}
|
|
}
|