From f049972aadd16ab2fcf4770ebbfa20c66b4994e8 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Sun, 13 Jul 2025 14:24:24 +0000 Subject: ide: improve launch configuration --- .vscode/launch.json | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) (limited to '.vscode/launch.json') diff --git a/.vscode/launch.json b/.vscode/launch.json index 0d379df..4dc9fc6 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,7 +6,7 @@ "miDebuggerPath": "x86_64-pc-elf-gdb", "type": "cppdbg", "request": "launch", - "program": "${workspaceFolder}/build/bin/${input:build_type}/_kernel", + "program": "${workspaceFolder}/build/bin/${command:cmake.buildType}/_kernel", "MIMode": "gdb", "miDebuggerServerAddress": "localhost:1234", "cwd": "${workspaceFolder}", @@ -20,7 +20,7 @@ }, { "description": "Load file", - "text": "-file-exec-and-symbols ${workspaceFolder}/build/bin/${input:build_type}/_kernel" + "text": "-file-exec-and-symbols ${workspaceFolder}/build/bin/${command:cmake.buildType}/_kernel" }, { "description": "Set breakpoint on _start", @@ -28,17 +28,5 @@ } ] } - ], - "inputs": [ - { - "id": "build_type", - "type": "pickString", - "default": "Debug", - "description": "The build type to boot", - "options": [ - "Debug", - "MinSizeRel" - ] - } ] } \ No newline at end of file -- cgit v1.2.3