Create Simulator target scaffold

This commit is contained in:
Lukas Höppner
2026-08-09 16:29:38 +02:00
parent 2f48b3efc8
commit 7ea52cb96a
14 changed files with 275 additions and 101 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "CMake: configure",
"type": "cmake",
"command": "configure",
"group": "build"
},
{
"label": "CMake: build",
"type": "cmake",
"command": "build",
"dependsOn": "CMake: configure",
"dependsOrder": "sequence",
"group": "build"
}
]
}