Added cmake

This commit is contained in:
Rafał Grodziński
2025-06-21 00:03:35 +09:00
parent d24fd05a7a
commit a1bb97a597
4 changed files with 27 additions and 3 deletions

11
.vscode/tasks.json vendored
View File

@@ -4,11 +4,20 @@
{
"label": "Build Bits Runner Builder",
"type": "shell",
"command": "./make.sh",
"command": "cmake --build build",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Clean built product",
"type": "shell",
"command": "cmake --build build --target clean",
"group": {
"kind": "none",
"isDefault": false
}
}
]
}