launch.json 820 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Build",
  6. "type": "haxe-eval",
  7. "request": "launch"
  8. },
  9. {
  10. "name": "Debug",
  11. "type": "hxcpp",
  12. "request": "launch",
  13. "cwd": "${workspaceRoot}",
  14. "program": "${workspaceFolder}/bin/Main-debug.exe"
  15. },
  16. {
  17. "name": "Build & Debug",
  18. "type": "hxcpp",
  19. "request": "launch",
  20. "cwd": "${workspaceFolder}",
  21. "program": "${workspaceFolder}/bin/Main-debug.exe",
  22. "preLaunchTask": {
  23. "type": "haxe",
  24. "args": "active configuration"
  25. }
  26. },
  27. {
  28. "name": "HL OtterUI cli",
  29. "request": "launch",
  30. "type": "hl",
  31. "cwd": "${workspaceRoot}",
  32. "preLaunchTask": {
  33. "type": "haxe",
  34. "args": "active configuration"
  35. }
  36. }
  37. ]
  38. }