| 12345678910111213141516171819202122232425262728293031 |
- {
- "version": "2.0.0",
- "tasks": [
- {
- "label": "build",
- "type": "shell",
- "command": "cmake",
- "args": [
- "--build",
- "${workspaceFolder}/build"
- ],
- "group": {
- "kind": "build",
- "isDefault": true
- },
- "problemMatcher": []
- },
- {
- "label": "configure",
- "type": "shell",
- "command": "cmake",
- "args": [
- "-S",
- "${workspaceFolder}",
- "-B",
- "${workspaceFolder}/build"
- ],
- "problemMatcher": []
- }
- ]
- }
|