Simulation Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

51 lines
1.2 KiB

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