8b8c9a772f
Re-added errors from settings xattr values
26 lines
460 B
JSON
26 lines
460 B
JSON
// Project-local debug tasks
|
|
//
|
|
// For more documentation on how to configure debug tasks,
|
|
// see: https://zed.dev/docs/debugger
|
|
[
|
|
{
|
|
"label": "Build & Run",
|
|
|
|
"adapter": "CodeLLDB",
|
|
"request": "launch",
|
|
|
|
"build": {
|
|
"command": "zig",
|
|
"args": ["build", "-Duse_c_libs=true", "-Ddebug=true"],
|
|
},
|
|
|
|
"program": "zig-out/bin/unsquashfs",
|
|
"args": [
|
|
"--force",
|
|
"-d",
|
|
"testing/TestExtractUnsquashfs",
|
|
"testing/LinuxPATest.sfs",
|
|
],
|
|
},
|
|
]
|