-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathMakefile.toml
55 lines (46 loc) · 960 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
49
50
51
52
53
54
55
[env]
CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true
[config]
default_to_workspace = false
[tasks.default]
alias = "microflow"
[tasks.all]
dependencies = [
"examples-arduino-nano33ble",
"examples-arduino-uno",
"examples-atsamx7x",
"examples-esp32",
"examples-qemu",
]
run_task = { name = "microflow", fork = true }
[tasks.microflow]
workspace = true
dependencies = [
"build",
"examples-compile",
"test",
"clippy",
"check-format",
"docs",
]
[tasks.examples-arduino-nano33ble]
cwd = "examples/arduino-nano33ble"
command = "cargo"
args = ["make"]
[tasks.examples-arduino-uno]
cwd = "examples/arduino-uno"
command = "cargo"
args = ["make"]
[tasks.examples-atsamx7x]
cwd = "examples/atsamx7x"
command = "cargo"
args = ["make"]
[tasks.examples-esp32]
cwd = "examples/esp32"
command = "cargo"
args = ["+esp", "make"]
install_crate = false
[tasks.examples-qemu]
cwd = "examples/qemu"
command = "cargo"
args = ["make"]