launch.json 727 B

123456789101112131415161718192021222324
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "C++ Debug",
  6. "type": "cppdbg",
  7. "request": "launch",
  8. "program": "${workspaceFolder}/../bin_Debug/SecurePlayAuxServer", // 替换为你的可执行文件路径
  9. "args": [],
  10. "stopAtEntry": false,
  11. "cwd": "${workspaceFolder}",
  12. "environment": [],
  13. "externalConsole": false,
  14. "MIMode": "gdb",
  15. "setupCommands": [
  16. {
  17. "description": "启用多线程调试",
  18. "text": "-enable-pretty-printing",
  19. "ignoreFailures": true
  20. }
  21. ]
  22. }
  23. ]
  24. }