-
Notifications
You must be signed in to change notification settings - Fork 2
/
recipes.json
48 lines (48 loc) · 1.07 KB
/
recipes.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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"run-vulkan": {
"cmd": "cargo run --example vulkan",
"interactive": true
},
"debug basic": {
"cmd": "cargo build --example basic",
"components": {
"dap": {
"program": "./target/debug/examples/basic",
"adapter": "rust"
}
}
},
"debug physics": {
"cmd": "cargo build --example physics",
"components": {
"dap": {
"program": "./target/debug/examples/physics",
"adapter": "rust"
}
}
},
"debug physics_stacking": {
"cmd": "cargo build --example physics_stacking",
"components": {
"dap": {
"program": "./target/debug/examples/physics_stacking",
"adapter": "rust"
}
}
},
"debug gravity": {
"cmd": "cargo build --example gravity",
"components": {
"dap": {
"program": "./target/debug/examples/gravity",
"adapter": "rust"
}
}
},
"build-vulkan": "cargo build --example vulkan",
"run-wgpu": {
"cmd": "cargo run --example wgpu",
"interactive": true
},
"check": "cargo check --workspace --examples"
}