forked from AmbientRun/Ambient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
recipes.json
42 lines (42 loc) · 1.06 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
{
"client": {
"cmd": "cargo run -p ambient"
},
"third-person-camera-release": {
"cmd": "cargo run --release -- run guest/rust/examples/third_person_camera"
},
"third-person-camera": {
"cmd": "cargo run -- run guest/rust/examples/third_person_camera"
},
"debug-third-person-camera": {
"cmd": "cargo build -p ambient",
"components": {
"dap": {
"program": "./target/debug/ambient",
"adapter": "rust",
"args": [
"run",
"./guest/rust/examples/third_person_camera"
]
}
}
},
"build-web": {
"cmd": "wasm-pack build web --dev",
"components": {
"qf": {
"compiler": "cargo"
}
}
},
"check-tests": {
"cmd": "cargo check --workspace --tests --examples"
},
"run-web": {
"cmd": "npm run start --open",
"cwd": "www",
"env": {
"RUST_LOG": "info"
}
}
}