-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile.toml
41 lines (34 loc) · 939 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
# x86_64-pc-windows-msvc
# x86_64-pc-windows-gnu
[tasks.build_win_x86_debug]
command = "cargo"
args = ["build", "--target", "x86_64-pc-windows-gnu"]
[tasks.build_win_x86_release]
command = "cargo"
args = ["build", "--target", "x86_64-pc-windows-gnu", "--release"]
# aarch64-apple-darwin
[tasks.build_mac_arm64_debug]
command = "cargo"
args = ["build", "--target", "aarch64-apple-darwin"]
# aarch64-apple-darwin
[tasks.build_mac_arm64_release]
command = "cargo"
args = ["build", "--target", "aarch64-apple-darwin", "--release"]
[tasks.build_mac_x86_debug]
command = "cargo"
args = ["build"]
[tasks.build_mac_x86_release]
command = "cargo"
args = ["build", "--release"]
[tasks.clean]
command = "cargo"
args = ["clean"]
[tasks.build]
dependencies = [
"build_mac_arm64_debug",
"build_mac_arm64_release",
"build_mac_x86_debug",
"build_mac_x86_release",
#"build_win_x86_debug",
#"build_win_x86_release",
]