Skip to content

Commit

Permalink
Merge pull request #859 from PowerGridModel/feature/launch-json-windows
Browse files Browse the repository at this point in the history
also add launch configuration for windows
  • Loading branch information
mgovers authored Dec 18, 2024
2 parents ba97784 + 569d8aa commit cce1408
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": [],
"console": "integratedTerminal",
}
]
}

0 comments on commit cce1408

Please sign in to comment.