1{ 2 "version": "2.0.0", 3 "tasks": [ 4 { 5 "type": "cmake", 6 "label": "Configure", 7 "command": "configure", 8 "problemMatcher": [ 9 "$gcc" 10 ], 11 "group": "build" 12 }, 13 { 14 "type": "cmake", 15 "label": "Build", 16 "command": "build", 17 "problemMatcher": [ 18 "$gcc" 19 ], 20 "group": { 21 "kind": "build", 22 "isDefault": true 23 }, 24 "dependsOn": [ 25 "Configure" 26 ] 27 } 28 ] 29}