OpenMiner/.vscode/tasks.json

23 lines
716 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "(Windows) Configure OpenMiner using MinGW",
"type": "shell",
"command": "cmake",
"args": ["-B", "build_mingw", "-G", "MinGW Makefiles", "."]
},
{
"label": "Compile OpenMiner using MinGW",
"type": "shell",
"command": "cmake --build build_mingw -j8",
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "(Windows) Configure OpenMiner using MinGW"
}
]
}