123456789101112131415161718192021222324 |
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "C++ Debug",
- "type": "cppdbg",
- "request": "launch",
- "program": "${workspaceFolder}/../bin_Debug/SecurePlayAuxServer", // 替换为你的可执行文件路径
- "args": [],
- "stopAtEntry": false,
- "cwd": "${workspaceFolder}",
- "environment": [],
- "externalConsole": false,
- "MIMode": "gdb",
- "setupCommands": [
- {
- "description": "启用多线程调试",
- "text": "-enable-pretty-printing",
- "ignoreFailures": true
- }
- ]
- }
- ]
- }
|