Skip to content

Commit ece3b41

Browse files
committed
also add launch configuration for windows
Signed-off-by: Martijn Govers <Martijn.Govers@Alliander.com>
1 parent ba97784 commit ece3b41

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+
"externalConsole": false,
2640
}
2741
]
2842
}

0 commit comments

Comments
 (0)