-
Notifications
You must be signed in to change notification settings - Fork 0
/
graphics.code-workspace
129 lines (129 loc) · 3.1 KB
/
graphics.code-workspace
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"extensions": {
"recommendations": [
"serayuzgur.crates",
"vadimcn.vscode-lldb",
"polymeilex.wgsl",
"matklad.rust-analyzer"
]
},
"folders": [
{
"path": "vesta",
"name": "Vesta Engine"
},
{
"path": "example",
"name": "Example"
},
{
"path": "projects/pixel_2d",
"name": "Pixel 2D"
},
{
"path": "projects/eris",
"name": "Project Eris"
},
{
"path": "projects/titan",
"name": "Project Titan"
}
],
"tasks": {
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"command": "cargo build",
"options": {
"cwd": "${workspaceFolder:Example}"
},
"problemMatcher": ["$rustc"],
"group": "build",
"label": "Build: Example"
},
{
"type": "shell",
"command": "cargo build",
"options": {
"cwd": "${workspaceFolder:Pixel 2D}"
},
"problemMatcher": ["$rustc"],
"group": "build",
"label": "Build: Pixel 2D"
},
{
"type": "shell",
"command": "cargo build",
"options": {
"cwd": "${workspaceFolder:Project Eris}"
},
"problemMatcher": ["$rustc"],
"group": "build",
"label": "Build: Project Eris"
},
{
"type": "shell",
"command": "cargo build",
"options": {
"cwd": "${workspaceFolder:Project Titan}"
},
"problemMatcher": ["$rustc"],
"group": "build",
"label": "Build: Project Titan"
}
]
},
"settings": {
"editor.formatOnSave": true
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Debug: Example",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder:Example}/target/debug/vesta_example",
"sourceLanguages": ["rust"],
"args": [],
"cwd": "${workspaceFolder:Example}",
"terminal": "console",
"preLaunchTask": "Build: Example"
},
{
"name": "Pixel 2D",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder:Pixel 2D}/target/debug/pixel_2d",
"sourceLanguages": ["rust"],
"args": [],
"cwd": "${workspaceFolder:Pixel 2D}",
"terminal": "console",
"preLaunchTask": "Build: Pixel 2D"
},
{
"name": "Project Eris",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder:Project Eris}/target/debug/eris",
"sourceLanguages": ["rust"],
"args": [],
"cwd": "${workspaceFolder:Project Eris}",
"terminal": "console",
"preLaunchTask": "Build: Project Eris"
},
{
"name": "Project Titan",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder:Project Titan}/target/debug/titan",
"sourceLanguages": ["rust"],
"args": [],
"cwd": "${workspaceFolder:Project Titan}",
"terminal": "console",
"preLaunchTask": "Build: Project Titan"
}
]
}
}