From f124a51e6c9086f07c00c4d0385a040ada989e4e Mon Sep 17 00:00:00 2001 From: Tony Xiang Date: Fri, 13 Dec 2024 13:22:05 +0100 Subject: [PATCH] add launch file Signed-off-by: Tony Xiang --- .vscode/launch.json | 28 ++++++++++++++++++++++++++++ .vscode/launch.json.license | 3 +++ 2 files changed, 31 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 .vscode/launch.json.license diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..faa4a0191 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,28 @@ +{ + // 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": "Debug validation test", + "type": "cppdbg", + "request": "launch", + "program": "${command:cmake.buildDirectory}/bin/power_grid_model_validation_tests", + "args": [ + "--test-case=Validation test single", + "--subcase=power_flow/1os2msr-sym-newton_raphson" + ], + "stopAtEntry": false, + "cwd": "${fileDirname}", + "environment": [], + "externalConsole": false, + "linux": { + "MIMode": "gdb", + }, + "osx": { + "MIMode": "lldb" + }, + } + ] +} \ No newline at end of file diff --git a/.vscode/launch.json.license b/.vscode/launch.json.license new file mode 100644 index 000000000..760105916 --- /dev/null +++ b/.vscode/launch.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: Contributors to the Power Grid Model project + +SPDX-License-Identifier: MPL-2.0