tasks.json 876 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "2.0.0",
  5. "options": {
  6. "cwd": "${workspaceRoot}/../range-build"
  7. },
  8. "tasks": [
  9. {
  10. "label": "cmake",
  11. "type": "shell",
  12. "command": "cmake -G 'Unix Makefiles' -DCMAKE_BUILD_TYPE=Debug ../range-v3",
  13. "group": "build",
  14. "presentation": {
  15. "reveal": "always",
  16. "panel": "new"
  17. }
  18. },
  19. {
  20. "label": "make",
  21. "type": "shell",
  22. "command": "make -j8",
  23. "group": {
  24. "kind": "build",
  25. "isDefault": true
  26. },
  27. "presentation": {
  28. "reveal": "always",
  29. "panel": "new"
  30. }
  31. }
  32. ]
  33. }