Skip to content

Commit cce1408

Browse files
authored
Merge pull request #859 from PowerGridModel/feature/launch-json-windows
also add launch configuration for windows
2 parents ba97784 + 569d8aa commit cce1408

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.vscode/launch.json

+15-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"version": "0.2.0",
66
"configurations": [
77
{
8-
"name": "Debug validation test",
8+
"name": "Debug validation test [Unix]",
99
"type": "cppdbg",
1010
"request": "launch",
1111
"program": "${command:cmake.buildDirectory}/bin/power_grid_model_validation_tests",
@@ -23,6 +23,20 @@
2323
"osx": {
2424
"MIMode": "lldb"
2525
},
26+
},
27+
{
28+
"name": "Debug validation test [Windows]",
29+
"type": "cppvsdbg",
30+
"request": "launch",
31+
"program": "${command:cmake.buildDirectory}/bin/power_grid_model_validation_tests.exe",
32+
"args": [
33+
"--test-case=Validation test single",
34+
"--subcase=power_flow/1os2msr-sym-newton_raphson"
35+
],
36+
"stopAtEntry": false,
37+
"cwd": "${fileDirname}",
38+
"environment": [],
39+
"console": "integratedTerminal",
2640
}
2741
]
2842
}

0 commit comments

Comments
 (0)