2022-06-12 18:49:00 +02:00
|
|
|
{
|
|
|
|
// Use IntelliSense to learn about possible attributes.
|
|
|
|
// Hover to view descriptions of existing attributes.
|
|
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
2023-01-22 16:25:04 +01:00
|
|
|
"name": "ScreenPlay Debug",
|
2022-12-28 11:36:16 +01:00
|
|
|
"request": "launch",
|
2023-01-22 16:25:04 +01:00
|
|
|
"type": "cppvsdbg", // Must be set otherwise VSCode does not know we want to debug c++
|
2022-12-28 11:36:16 +01:00
|
|
|
"stopAtEntry": false,
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"environment": [],
|
2023-01-26 12:10:12 +01:00
|
|
|
"internalConsoleOptions": "openOnSessionStart",
|
2023-01-26 13:59:36 +01:00
|
|
|
"visualizerFile": "${workspaceFolder}/.vscode/qt.natvis.xml",
|
|
|
|
"showDisplayString": true,
|
2023-01-22 16:25:04 +01:00
|
|
|
"windows": {
|
|
|
|
"environment": [
|
|
|
|
{
|
|
|
|
"name": "Path",
|
2023-01-27 09:01:37 +01:00
|
|
|
"value": "${env:Path};${workspaceFolder}\\..\\aqt\\6.5.0\\msvc2019_64\\bin\\;${workspaceFolder}\\..\\aqt\\6.5.0\\msvc2019_64\\modules\\;${workspaceFolder}\\..\\aqt\\6.5.0\\msvc2019_64\\qml\\;"
|
2023-01-22 16:25:04 +01:00
|
|
|
}
|
|
|
|
],
|
2023-01-27 09:01:37 +01:00
|
|
|
"program": "${workspaceFolder}/../build_ScreenPlay_Qt_6.5.0_MSVC_Debug/bin/ScreenPlay.exe"
|
2023-01-22 16:25:04 +01:00
|
|
|
},
|
|
|
|
"osx": {
|
|
|
|
"MIMode": "lldb",
|
2023-01-27 09:01:37 +01:00
|
|
|
"program": "${workspaceFolder}/../build_ScreenPlay_Qt_6.5.0_Clang_Debug/bin/ScreenPlay.app/Contents/MacOS/ScreenPlay",
|
|
|
|
"type": "lldb"
|
2023-01-27 10:04:51 +01:00
|
|
|
},
|
|
|
|
"linux": {
|
|
|
|
"MIMode": "lldb",
|
|
|
|
"program": "${workspaceFolder}/../build_ScreenPlay_Qt_6.4.2_GCC_Debug/bin/ScreenPlay",
|
|
|
|
"type": "lldb"
|
2023-01-22 16:25:04 +01:00
|
|
|
}
|
2022-12-28 11:36:16 +01:00
|
|
|
},
|
|
|
|
{
|
2023-01-22 16:25:04 +01:00
|
|
|
"name": "ScreenPlay RelWithDebInfo",
|
2022-06-12 18:49:00 +02:00
|
|
|
"request": "launch",
|
2023-01-22 16:25:04 +01:00
|
|
|
"type": "cppvsdbg", // Must be set otherwise VSCode does not know we want to debug c++
|
2023-01-20 15:55:17 +01:00
|
|
|
"stopAtEntry": false,
|
2022-12-17 12:27:16 +01:00
|
|
|
"cwd": "${workspaceFolder}",
|
2023-01-20 15:55:17 +01:00
|
|
|
"environment": [],
|
2023-01-26 12:10:12 +01:00
|
|
|
"internalConsoleOptions": "openOnSessionStart",
|
2023-01-26 13:59:36 +01:00
|
|
|
"visualizerFile": "${workspaceFolder}/.vscode/qt.natvis.xml",
|
|
|
|
"showDisplayString": true,
|
2023-01-22 16:25:04 +01:00
|
|
|
"windows": {
|
|
|
|
"environment": [
|
|
|
|
{
|
|
|
|
"name": "Path",
|
2023-01-27 09:01:37 +01:00
|
|
|
"value": "${env:Path};${workspaceFolder}\\..\\aqt\\6.5.0\\msvc2019_64\\bin\\;${workspaceFolder}\\..\\aqt\\6.5.0\\msvc2019_64\\modules\\;${workspaceFolder}\\..\\aqt\\6.5.0\\msvc2019_64\\qml\\;"
|
2023-01-22 16:25:04 +01:00
|
|
|
}
|
|
|
|
],
|
2023-01-27 09:01:37 +01:00
|
|
|
"program": "${workspaceFolder}/../build_ScreenPlay_Qt_6.5.0_MSVC_RelWithDebInfo/bin/ScreenPlay.exe"
|
2023-01-22 16:25:04 +01:00
|
|
|
},
|
|
|
|
"osx": {
|
|
|
|
"MIMode": "lldb",
|
2023-01-27 09:01:37 +01:00
|
|
|
"program": "${workspaceFolder}/../build_ScreenPlay_Qt_6.5.0_Clang_RelWithDebInfo/bin/ScreenPlay.app/Contents/MacOS/ScreenPlay",
|
|
|
|
"type": "lldb"
|
2023-01-27 10:04:51 +01:00
|
|
|
},
|
|
|
|
"linux": {
|
|
|
|
"program": "${workspaceFolder}/../build_ScreenPlay_Qt_6.4.2_GCC_RelWithDebInfo/bin/ScreenPlay",
|
|
|
|
"type": "lldb"
|
2023-01-22 16:25:04 +01:00
|
|
|
}
|
2023-01-07 12:30:18 +01:00
|
|
|
},
|
|
|
|
{
|
2023-01-22 16:25:04 +01:00
|
|
|
"name": "ScreenPlayWallpaper Debug",
|
2023-01-07 12:30:18 +01:00
|
|
|
"request": "launch",
|
2023-01-22 16:25:04 +01:00
|
|
|
"type": "cppvsdbg", // Must be set otherwise VSCode does not know we want to debug c++
|
|
|
|
"stopAtEntry": false,
|
2023-01-07 12:30:18 +01:00
|
|
|
"cwd": "${workspaceFolder}",
|
2023-01-22 16:25:04 +01:00
|
|
|
"environment": [],
|
2023-01-26 12:10:12 +01:00
|
|
|
"internalConsoleOptions": "openOnSessionStart",
|
2023-01-22 16:25:04 +01:00
|
|
|
"windows": {
|
|
|
|
"environment": [
|
|
|
|
{
|
|
|
|
"name": "Path",
|
2023-01-27 09:01:37 +01:00
|
|
|
"value": "${env:Path};${workspaceFolder}\\..\\aqt\\6.5.0\\msvc2019_64\\bin\\;${workspaceFolder}\\..\\aqt\\6.5.0\\msvc2019_64\\modules\\;${workspaceFolder}\\..\\aqt\\6.5.0\\msvc2019_64\\qml\\;"
|
2023-01-22 16:25:04 +01:00
|
|
|
}
|
|
|
|
],
|
2023-01-27 09:01:37 +01:00
|
|
|
"program": "${workspaceFolder}/../build_ScreenPlay_Qt_6.5.0_MSVC_Debug/bin/ScreenPlayWallpaper.exe"
|
2023-01-22 16:25:04 +01:00
|
|
|
},
|
|
|
|
"osx": {
|
|
|
|
"MIMode": "lldb",
|
2023-02-04 17:34:59 +01:00
|
|
|
"program": "${workspaceFolder}/../build_ScreenPlay_Qt_6.5.0_Clang_Debug/bin/ScreenPlay.app/Contents/MacOS/ScreenPlayWallpaper",
|
2023-01-27 09:01:37 +01:00
|
|
|
"type": "lldb"
|
2023-01-27 10:04:51 +01:00
|
|
|
},
|
|
|
|
"linux": {
|
|
|
|
"program": "${workspaceFolder}/../build_ScreenPlay_Qt_6.4.2_GCC_Debug/bin/ScreenPlayWallpaper",
|
|
|
|
"type": "lldb"
|
2023-01-22 16:25:04 +01:00
|
|
|
}
|
2023-01-20 14:42:48 +01:00
|
|
|
},
|
|
|
|
{
|
2023-01-22 16:25:04 +01:00
|
|
|
"name": "ScreenPlayWallpaper RelWithDebInfo",
|
2023-01-20 14:42:48 +01:00
|
|
|
"request": "launch",
|
2023-01-22 16:25:04 +01:00
|
|
|
"type": "cppvsdbg", // Must be set otherwise VSCode does not know we want to debug c++
|
|
|
|
"stopAtEntry": false,
|
2023-01-20 14:42:48 +01:00
|
|
|
"cwd": "${workspaceFolder}",
|
2023-01-22 16:25:04 +01:00
|
|
|
"environment": [],
|
2023-01-26 12:10:12 +01:00
|
|
|
"internalConsoleOptions": "openOnSessionStart",
|
2023-01-26 13:59:36 +01:00
|
|
|
"visualizerFile": "${workspaceFolder}/.vscode/qt.natvis.xml",
|
|
|
|
"showDisplayString": true,
|
2023-01-22 16:25:04 +01:00
|
|
|
"windows": {
|
|
|
|
"environment": [
|
|
|
|
{
|
|
|
|
"name": "Path",
|
2023-01-27 09:01:37 +01:00
|
|
|
"value": "${env:Path};${workspaceFolder}\\..\\aqt\\6.5.0\\msvc2019_64\\bin\\;${workspaceFolder}\\..\\aqt\\6.5.0\\msvc2019_64\\modules\\;${workspaceFolder}\\..\\aqt\\6.5.0\\msvc2019_64\\qml\\;"
|
2023-01-22 16:25:04 +01:00
|
|
|
}
|
|
|
|
],
|
2023-01-27 09:01:37 +01:00
|
|
|
"program": "${workspaceFolder}/../build_ScreenPlay_Qt_6.5.0_MSVC_RelWithDebInfo/bin/ScreenPlayWallpaper.exe"
|
2023-01-22 16:25:04 +01:00
|
|
|
},
|
|
|
|
"osx": {
|
|
|
|
"MIMode": "lldb",
|
2023-02-04 17:34:59 +01:00
|
|
|
"program": "${workspaceFolder}/../build_ScreenPlay_Qt_6.5.0_Clang_RelWithDebInfo/bin/ScreenPlay.app/Contents/MacOS/ScreenPlayWallpaper",
|
2023-01-27 09:01:37 +01:00
|
|
|
"type": "lldb"
|
2023-01-27 10:04:51 +01:00
|
|
|
},
|
|
|
|
"linux": {
|
|
|
|
"program": "${workspaceFolder}/../build_ScreenPlay_Qt_6.4.2_GCC_RelWithDebInfo/bin/ScreenPlayWallpaper",
|
|
|
|
"type": "lldb"
|
2023-01-22 16:25:04 +01:00
|
|
|
}
|
2023-01-26 13:13:04 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "ScreenPlayWidget Debug",
|
|
|
|
"request": "launch",
|
|
|
|
"type": "cppvsdbg", // Must be set otherwise VSCode does not know we want to debug c++
|
|
|
|
"stopAtEntry": false,
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"environment": [],
|
|
|
|
"internalConsoleOptions": "openOnSessionStart",
|
2023-01-26 13:59:36 +01:00
|
|
|
"visualizerFile": "${workspaceFolder}/.vscode/qt.natvis.xml",
|
|
|
|
"showDisplayString": true,
|
2023-01-26 13:13:04 +01:00
|
|
|
"windows": {
|
|
|
|
"environment": [
|
|
|
|
{
|
|
|
|
"name": "Path",
|
2023-01-27 09:01:37 +01:00
|
|
|
"value": "${env:Path};${workspaceFolder}\\..\\aqt\\6.5.0\\msvc2019_64\\bin\\;${workspaceFolder}\\..\\aqt\\6.5.0\\msvc2019_64\\modules\\;${workspaceFolder}\\..\\aqt\\6.5.0\\msvc2019_64\\qml\\;"
|
2023-01-26 13:13:04 +01:00
|
|
|
}
|
|
|
|
],
|
2023-01-27 09:01:37 +01:00
|
|
|
"program": "${workspaceFolder}/../build_ScreenPlay_Qt_6.5.0_MSVC_Debug/bin/ScreenPlayWidget.exe"
|
2023-01-26 13:13:04 +01:00
|
|
|
},
|
|
|
|
"osx": {
|
|
|
|
"MIMode": "lldb",
|
2023-02-04 17:53:57 +01:00
|
|
|
"program": "${workspaceFolder}/../build_ScreenPlay_Qt_6.5.0_Clang_Debug/bin/ScreenPlay.app/Contents/MacOS/ScreenPlayWidget",
|
2023-01-27 09:01:37 +01:00
|
|
|
"type": "lldb"
|
2023-01-27 10:04:51 +01:00
|
|
|
},
|
|
|
|
"linux": {
|
|
|
|
"program": "${workspaceFolder}/../build_ScreenPlay_Qt_6.4.2_GCC_Debug/bin/ScreenPlayWidget",
|
|
|
|
"type": "lldb"
|
2023-01-26 13:13:04 +01:00
|
|
|
}
|
2022-06-12 18:49:00 +02:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|