-
Notifications
You must be signed in to change notification settings - Fork 0
/
launch.json
35 lines (35 loc) · 1.01 KB
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug rox",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/target/debug/rox",
"args": ["examples/loops.rox"],
"stopAtEntry": false,
"miDebuggerPath": "/Users/vitor.morgado/.cargo/bin/rust-gdb",
"gdbpath": "/Users/vitor.morgado/.cargo/bin/rust-gdb",
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"dap-compilation": "cargo build",
"dap-compilation-dir": "${workspaceFolder}"
},
{
"name": "Release rox",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/target/release/rox",
"args": ["examples/loops.rox"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"dap-compilation": "cargo build --release",
"dap-compilation-dir": "${workspaceFolder}"
}
]
}