-
Notifications
You must be signed in to change notification settings - Fork 0
/
rust.code-workspace
57 lines (57 loc) · 970 Bytes
/
rust.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
{
"folders": [
{
"path": "backend"
},
{
"path": "gd-test"
},
{
"path": "vnode-macros"
},
{
"path": "vnode-renderer"
},
{
"name": "VNode Test Project",
"path": "/mnt/d/GodotProjects/VNodeRenderTest"
},
],
"settings": {},
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "cargo",
"args": ["build"],
"cwd": "${workspaceFolder}/backend"
}
],
"compounds": []
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
"problemMatcher": [
"$rustc"
],
"group": "build",
"label": "backend: cargo build",
"options": {
"cwd": "${workspaceFolder}"
},
"env": {
"GD_TEST_OUTPUT_DIR": "/mnt/d/GodotProjects/VNodeRenderTest/test/",
"GD_TEST_CLASS_PREFIX": "res://test",
"GD_TEST_GDNLIB_PATH": "res://bin/backend.gdnlib",
}
}
]
}
}