Files
LXC/.vscode/tasks.json
Pasha Bibko d604de28fd Removed unnecessary code
Also made console be cleared when a build process is done to make it look cleaner.
2025-08-20 20:57:04 +01:00

26 lines
514 B
JSON

{
"version": "2.0.0",
"tasks":
[
{
"label": "Clear console",
"type": "shell",
"group": "none",
"windows": { "command": "cls" },
"linux" : { "command": "clear" }
},
{
"label": "build",
"type": "shell",
"command": "cmake --build build",
"group": "build",
"problemMatcher": [],
"dependsOn": [ "Clear console" ]
}
]
}