1{
2 // Use IntelliSense to learn about possible attributes.
3 // Hover to view descriptions of existing attributes.
4 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5 "version": "0.2.0",
6 "configurations": [
7
8 {
9 "name": "Debug unit tests in library 'felix_audio'",
10 "type": "lldb",
11 "request": "launch",
12 "cargo": {
13 "args": [
14 "test",
15 "--package=felix-audio"
16 ]
17 }
18 },
19 {
20 "name": "Debug example 'test'",
21 "type": "lldb",
22 "request": "launch",
23 "cargo": {
24 "args": [
25 "run",
26 "--example=test",
27 "--package=felix-audio"
28 ]
29 },
30 "args": []
31 },
32 {
33 "name": "Debug unit tests in example 'test'",
34 "type": "lldb",
35 "request": "launch",
36 "cargo": {
37 "args": [
38 "test",
39 "--example=test",
40 "--package=felix-audio"
41 ]
42 }
43 },
44 {
45 "name": "Debug executable 'felix-client'",
46 "type": "lldb",
47 "request": "launch",
48 "cargo": {
49 "args": [
50 "run",
51 "--bin=felix-client",
52 "--package=felix-client"
53 ]
54 },
55 "args": []
56 },
57 {
58 "name": "Debug unit tests in executable 'felix-client'",
59 "type": "lldb",
60 "request": "launch",
61 "cargo": {
62 "args": [
63 "test",
64 "--bin=felix-client",
65 "--package=felix-client"
66 ]
67 }
68 },
69 {
70 "name": "Debug unit tests in library 'felix_net'",
71 "type": "lldb",
72 "request": "launch",
73 "cargo": {
74 "args": [
75 "test",
76 "--package=felix-net"
77 ]
78 }
79 },
80 {
81 "name": "Debug executable 'felix-server'",
82 "type": "lldb",
83 "request": "launch",
84 "cargo": {
85 "args": [
86 "run",
87 "--bin=felix-server",
88 "--package=felix-server"
89 ]
90 },
91 "args": []
92 },
93 {
94 "name": "Debug unit tests in executable 'felix-server'",
95 "type": "lldb",
96 "request": "launch",
97 "cargo": {
98 "args": [
99 "test",
100 "--bin=felix-server",
101 "--package=felix-server"
102 ]
103 }
104 }
105 ]
106}