-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile.toml
48 lines (41 loc) · 914 Bytes
/
Makefile.toml
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
[tasks.build_lunasim]
workspace = false
command = "cargo"
args = ["build", "-p", "lunasim-lib", "--release"]
[tasks.build_lunabase]
workspace = false
command = "cargo"
args = ["build", "-p", "lunabase-lib", "--release"]
[tasks.godot]
workspace = false
dependencies = [
"build_lunabase",
"build_lunasim"
]
[tasks.sim]
workspace = false
command = "cargo"
args = ["run", "-p", "lunabot", "--", "sim"]
dependencies = [
"godot",
]
[tasks.main]
workspace = false
command = "cargo"
args = ["run", "--features=production", "-p", "lunabot", "--", "main"]
[tasks.del-cabinet]
workspace = false
command = "cargo"
args = ["run", "-p", "urobotics-tool", "--", "deletecabinet"]
[tasks.mouser-web]
workspace = false
command = "npm"
cwd = "mouser/mouser-web"
args = ["run", "build"]
[tasks.mouser-host]
workspace = false
command = "cargo"
dependencies = [
"mouser-web",
]
args = ["run", "-p", "mouser-host"]