mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2025-06-18 18:56:36 +02:00
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"
|
|
}
|
|
}
|
|
}
|
|
}
|