39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
JSON
{
|
|
// 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": [
|
|
{
|
|
"name": "BEdit debug",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"module": "bedit_gui",
|
|
"preLaunchTask": "Qt: Generate files",
|
|
"cwd": "${workspaceFolder}",
|
|
"env": {
|
|
"QT_QPA_PLATFORMTHEME": "qt6ct",
|
|
"QT_QPA_PLATFORM": "xcb"
|
|
},
|
|
"args": [
|
|
"-f", "${workspaceFolder}/untitled.bedit.json"
|
|
]
|
|
},
|
|
{
|
|
"name": "BEsim debug",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"module": "bedit_gui.simulation_application",
|
|
"preLaunchTask": "Qt: Generate files",
|
|
"cwd": "${workspaceFolder}",
|
|
"env": {
|
|
"QT_QPA_PLATFORMTHEME": "qt6ct",
|
|
"QT_QPA_PLATFORM": "xcb"
|
|
},
|
|
"args": [
|
|
"-s", "run_bondgraph",
|
|
"${workspaceFolder}/untitled.besim.json"
|
|
]
|
|
}
|
|
]
|
|
} |