Simulation Core
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
498 B

  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. }