aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorMax-001 <80035972+Max-001@users.noreply.github.com>2024-10-02 12:33:11 +0200
committerMax-001 <80035972+Max-001@users.noreply.github.com>2024-10-02 12:33:11 +0200
commit24d284a4ebf7928310e42aaff2d4a1a08c7a7dd5 (patch)
treec3579136c510bfca6b99d94e1127d8ce7608c30c /.vscode/launch.json
parent5458abaca5f01a4d34bb55b1b44dc4fb4e9890be (diff)
Added tasks to quickly build POC, added launch to quickly debug POC
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..160d242
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,28 @@
+{
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "Debug with Ninja",
+ "type": "cppdbg",
+ "request": "launch",
+ "program": "${workspaceFolder}/mwe/ecs-homemade/build/ecs-homemade.exe",
+ "args": [],
+ "stopAtEntry": true,
+ "cwd": "${workspaceFolder}",
+ "environment": [],
+ "externalConsole": false,
+ "MIMode": "gdb",
+ "preLaunchTask": "build",
+ "setupCommands": [
+ {
+ "description": "Enable pretty-printing for gdb",
+ "text": "-enable-pretty-printing",
+ "ignoreFailures": true
+ }
+ ],
+ "logging": {
+ "engineLogging": true
+ }
+ }
+ ]
+}