diff options
| author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-14 14:47:04 +0100 | 
|---|---|---|
| committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-14 14:47:04 +0100 | 
| commit | 1c201e9bd0c1017386c8eb6bd97cd638d84ff1ab (patch) | |
| tree | 5e8613b40ab5f0c5df095682506353304422823c | |
| parent | 9579f2a385de42cf74d50038c79a58c14eb0d980 (diff) | |
remove launch
| -rw-r--r-- | .vscode/launch.json | 28 | 
1 files changed, 0 insertions, 28 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 07bd65f..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,28 +0,0 @@ -{ -    "version": "0.2.0", -    "configurations": [ -        { -            "name": "Debug test_main", -            "type": "cppdbg", -            "request": "launch", -            "program": "${workspaceFolder}/src/build/test_main",  // Path to your executable -            "args": [],  // Optional: add any arguments here if needed -            "stopAtEntry": false,  // Set to true if you want to break at the entry point -            "cwd": "${workspaceFolder}",  // Working directory for the program -            "environment": [], -            "externalConsole": false,  // Set to true to use an external console -            "MIMode": "gdb",  // Use "lldb" if you're using LLDB instead of GDB -            "setupCommands": [ -                { -                    "description": "Enable pretty-printing for gdb", -                    "text": "-enable-pretty-printing", -                    "ignoreFailures": true -                } -            ], -            "miDebuggerPath": "/usr/bin/gdb",  // Path to gdb, adjust based on your system -            "preLaunchTask": "",  // Optional: specify a pre-launch task like building your project -            "sourceFileMap": {}, -            "logging": { "moduleLoad": false, "engineLogging": false } -        } -    ] -}  |