summaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorerorcun <erayorcunus@gmail.com>2020-10-09 09:48:58 +0200
committerGitHub <noreply@github.com>2020-10-09 09:48:58 +0200
commit70ae4b192b7da1bf0a8a389aff942e287579accb (patch)
treee50113bee561ede93130e2462b6e89208a5519d1 /.vscode/launch.json
parentFix POSIX streaming (diff)
parent.vscode/settings: fix include path (diff)
downloadre3-70ae4b192b7da1bf0a8a389aff942e287579accb.tar
re3-70ae4b192b7da1bf0a8a389aff942e287579accb.tar.gz
re3-70ae4b192b7da1bf0a8a389aff942e287579accb.tar.bz2
re3-70ae4b192b7da1bf0a8a389aff942e287579accb.tar.lz
re3-70ae4b192b7da1bf0a8a389aff942e287579accb.tar.xz
re3-70ae4b192b7da1bf0a8a389aff942e287579accb.tar.zst
re3-70ae4b192b7da1bf0a8a389aff942e287579accb.zip
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json89
1 files changed, 89 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 00000000..82ce041f
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,89 @@
+{
+ "configurations": [
+ {
+ "MIMode": "gdb",
+ "args": [],
+ "cwd": "${workspaceFolder}",
+ "environment": [],
+ "externalConsole": false,
+ "name": "(gdb) Launch (Linux Debug)",
+ "preLaunchTask": "Compile (Debug Linux x64)",
+ "program": "${workspaceFolder}/bin/linux-amd64-librw_gl3_glfw-oal/Debug/re3",
+ "request": "launch",
+ "setupCommands": [
+ {
+ "description": "Enable pretty-printing for gdb",
+ "ignoreFailures": true,
+ "text": "-enable-pretty-printing"
+ }
+ ],
+ "stopAtEntry": false,
+ "targetArchitecture": "x64",
+ "type": "cppdbg"
+ },
+ {
+ "MIMode": "gdb",
+ "args": [],
+ "cwd": "${workspaceFolder}",
+ "environment": [],
+ "externalConsole": false,
+ "name": "(gdb) Launch (Linux Release)",
+ "preLaunchTask": "Compile (Release Linux x64)",
+ "program": "${workspaceFolder}/bin/linux-amd64-librw_gl3_glfw-oal/Release/re3",
+ "request": "launch",
+ "setupCommands": [
+ {
+ "description": "Enable pretty-printing for gdb",
+ "ignoreFailures": true,
+ "text": "-enable-pretty-printing"
+ }
+ ],
+ "stopAtEntry": false,
+ "targetArchitecture": "x64",
+ "type": "cppdbg"
+ },
+ {
+ "MIMode": "lldb",
+ "args": [],
+ "cwd": "${workspaceFolder}",
+ "environment": [],
+ "externalConsole": false,
+ "name": "(lldb) Launch (macOS Debug)",
+ "preLaunchTask": "Compile (Debug macOS x64)",
+ "program": "${workspaceFolder}/bin/macosx-amd64-librw_gl3_glfw-oal/Debug/re3.app",
+ "request": "launch",
+ "setupCommands": [
+ {
+ "description": "Enable pretty-printing for lldb",
+ "ignoreFailures": true,
+ "text": "-enable-pretty-printing"
+ }
+ ],
+ "stopAtEntry": false,
+ "targetArchitecture": "x64",
+ "type": "cppdbg"
+ },
+ {
+ "MIMode": "lldb",
+ "args": [],
+ "cwd": "${workspaceFolder}",
+ "environment": [],
+ "externalConsole": false,
+ "name": "(lldb) Launch (macOS Release)",
+ "preLaunchTask": "Compile (Release macOS x64)",
+ "program": "${workspaceFolder}/bin/macosx-amd64-librw_gl3_glfw-oal/Release/re3.app",
+ "request": "launch",
+ "setupCommands": [
+ {
+ "description": "Enable pretty-printing for lldb",
+ "ignoreFailures": true,
+ "text": "-enable-pretty-printing"
+ }
+ ],
+ "stopAtEntry": false,
+ "targetArchitecture": "x64",
+ "type": "cppdbg"
+ }
+ ],
+ "version": "0.2.0"
+}