Renderer/.vscode/tasks.json
austin 03729abc7b
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
commit work for the day
2024-12-06 22:40:08 -05:00

40 lines
805 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Install Native Lib",
"command": "cp ./out/build/libStormEngine.* ./shared-folder",
"group": "build",
"detail": "Installs the native lib locally",
"dependsOn": ["CMake: build",]
},
{
"type": "cmake",
"label": "CMake: build",
"command": "build",
"targets": [
"all"
],
"preset": "${command:cmake.activeBuildPresetName}",
"group": "build",
"problemMatcher": [],
"detail": "CMake template build task"
},
{
"type": "cmake",
"label": "CMake: clean rebuild",
"command": "cleanRebuild",
"targets": [
"all"
],
"preset": "${command:cmake.activeBuildPresetName}",
"group": "build",
"problemMatcher": [],
"detail": "CMake template clean rebuild task"
}
]
}