Simulation Core
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

tasks.json 1.0 KiB

1 ano atrás
1 ano atrás
12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "make",
  6. "type": "shell",
  7. "command": "make",
  8. "options": {
  9. "cwd": "${workspaceRoot}"
  10. }
  11. },
  12. {
  13. "label": "make debug",
  14. "type": "shell",
  15. "command": "make",
  16. "args": [
  17. "debug"
  18. ],
  19. "options": {
  20. "cwd": "${workspaceRoot}"
  21. }
  22. },
  23. {
  24. "label": "build",
  25. "type": "shell",
  26. "command": "/usr/bin/cc",
  27. "args": [
  28. "-g",
  29. "${file}",
  30. "lib/libhiredis.a",
  31. "-o",
  32. "${workspaceFolder}/a.out",
  33. "-I${workspaceFolder}/include",
  34. "-L${workspaceFolder}/lib",
  35. "-levent",
  36. ],
  37. "group": {
  38. "kind": "build",
  39. "isDefault": true
  40. }
  41. }
  42. ]
  43. }