Files
Np_Term/.vscode/tasks.json
2025-05-27 00:21:53 +09:00

36 lines
872 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "ninja-build",
"command": "ninja",
"args": [],
"options": {
"cwd": "${workspaceFolder}/build/"
},
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": ["cmake"]
},
{
"type": "shell",
"label": "cmake",
"command": "cmake",
"args": [
"..",
"-G",
"Ninja"
],
"options": {
"cwd": "${workspaceFolder}/build/"
},
"group": {
"kind": "build",
"isDefault": false
}
},
]
}