looper/.zed/tasks.json
2024-09-06 10:06:32 -07:00

28 lines
661 B
JSON

[
{
"label": "Build (System)",
"command": "./build.sh",
"args": ["-j$(nproc)"],
"shell": "system",
"reveal": "always",
"hide": "never"
},
{
"label": "Build (Docker)",
"command": "./build-docker.sh",
"args": ["-j$(nproc)"],
"shell": "system",
"reveal": "always",
"hide": "never"
},
{
"label": "Debug (Docker-built, gdb)",
"command": "./start-memory-limited.sh",
"args": ["2048M", "gdb", "--args", "./build-docker/looper", "-m"]
},
{
"label": "Debug (System-built, gdb)",
"command": "./start-memory-limited.sh",
"args": ["2048M", "gdb", "--args", "./build/looper", "-m"]
}
]