|
@@ -4,6 +4,17 @@
|
|
|
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
|
|
|
"version": "0.2.0",
|
|
|
"configurations": [
|
|
|
+ {
|
|
|
+ "name": "VideoPlayer(Debug_x86)",
|
|
|
+ "type": "cppvsdbg",
|
|
|
+ "request": "launch",
|
|
|
+ "program": "${workspaceRoot}/bin/win32/Debug/VideoPlayer.exe",
|
|
|
+ "args": [],
|
|
|
+ "stopAtEntry": false,
|
|
|
+ "cwd": "${workspaceRoot}/bin/win32/",
|
|
|
+ "environment": [{"name":"PATH","value":"C:/Qt/Qt5.13.2/5.13.2/msvc2017/bin"}],
|
|
|
+ "console": "externalTerminal"
|
|
|
+ },
|
|
|
{
|
|
|
"name": "VideoPlayer(Debug_x64)",
|
|
|
"type": "cppvsdbg",
|
|
@@ -16,14 +27,14 @@
|
|
|
"console": "externalTerminal"
|
|
|
},
|
|
|
{
|
|
|
- "name": "VideoPlayer(Release_x64)",
|
|
|
+ "name": "VideoPlayer(Release_x86)",
|
|
|
"type": "cppvsdbg",
|
|
|
"request": "launch",
|
|
|
- "program": "${workspaceRoot}/bin/win64/Release/VideoPlayer.exe",
|
|
|
+ "program": "${workspaceRoot}/bin/win32/Release/VideoPlayer.exe",
|
|
|
"args": [],
|
|
|
"stopAtEntry": false,
|
|
|
- "cwd": "${workspaceRoot}/bin/win64/",
|
|
|
- "environment": [{"name":"PATH","value":"C:/Qt/Qt5.13.2/5.13.2/msvc2017_64/bin"}],
|
|
|
+ "cwd": "${workspaceRoot}/bin/win32/",
|
|
|
+ "environment": [{"name":"PATH","value":"C:/Qt/Qt5.13.2/5.13.2/msvc2017/bin"}],
|
|
|
// "console": "externalTerminal"
|
|
|
"console": "internalConsole" //在 VSCode 内部的调试控制台中显示输出,这个控制台只能在调试会话期间使用。
|
|
|
},
|
|
@@ -35,7 +46,7 @@
|
|
|
"args": [],
|
|
|
"stopAtEntry": false,
|
|
|
"cwd": "${workspaceRoot}/bin/win64/",
|
|
|
- "environment": [{"name":"PATH","value":"D:/Qt/Qt5.13.2/5.13.2/msvc2017_64/bin"}],
|
|
|
+ "environment": [{"name":"PATH","value":"C:/Qt/Qt5.13.2/5.13.2/msvc2017_64/bin"}],
|
|
|
// "console": "externalTerminal"
|
|
|
"console": "internalConsole" //在 VSCode 内部的调试控制台中显示输出,这个控制台只能在调试会话期间使用。
|
|
|
}
|