task.json 715 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "build",
  6. "type": "shell",
  7. "command": "cmake",
  8. "args": [
  9. "--build",
  10. "${workspaceFolder}/build"
  11. ],
  12. "group": {
  13. "kind": "build",
  14. "isDefault": true
  15. },
  16. "problemMatcher": []
  17. },
  18. {
  19. "label": "configure",
  20. "type": "shell",
  21. "command": "cmake",
  22. "args": [
  23. "-S",
  24. "${workspaceFolder}",
  25. "-B",
  26. "${workspaceFolder}/build"
  27. ],
  28. "problemMatcher": []
  29. }
  30. ]
  31. }