RetroQUEST/gdlibretro/.vscode/tasks.json

25 lines
608 B
JSON
Raw Normal View History

{
"version": "2.0.0",
"tasks": [
{
"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: Install",
"command": "install",
"dependsOn": [
"CMake: build"
],
}
]
}