Skip to content

Commit

Permalink
also add launch configuration for windows
Browse files Browse the repository at this point in the history
Signed-off-by: Martijn Govers <[email protected]>
  • Loading branch information
mgovers committed Dec 17, 2024
1 parent ba97784 commit ece3b41
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"version": "0.2.0",
"configurations": [
{
"name": "Debug validation test",
"name": "Debug validation test [Unix]",
"type": "cppdbg",
"request": "launch",
"program": "${command:cmake.buildDirectory}/bin/power_grid_model_validation_tests",
Expand All @@ -23,6 +23,20 @@
"osx": {
"MIMode": "lldb"
},
},
{
"name": "Debug validation test [Windows]",
"type": "cppvsdbg",
"request": "launch",
"program": "${command:cmake.buildDirectory}/bin/power_grid_model_validation_tests.exe",
"args": [
"--test-case=Validation test single",
"--subcase=power_flow/1os2msr-sym-newton_raphson"
],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
}
]
}

0 comments on commit ece3b41

Please sign in to comment.