-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.mise.toml
39 lines (32 loc) · 976 Bytes
/
.mise.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
[tools]
cmake = '3.28'
python = '3.11'
[tasks.m2ctx]
run = "python3 ./tools/m2ctx.py"
alias = 'ctx'
[tasks.clean]
# description = 'Remove all CMake files, assembly, and binaries'
run = "./scripts/clean"
alias = 'cl'
[tasks.configure]
# description = 'Create the build system, and generate assembly and binaries'
depends = ['clean']
run = """cmake -S . -B build -G "Ninja""""
alias = 'c'
[tasks.configure_decompressed]
# description = 'Create the build system, and generate assembly and binaries, without compressing'
depends = ['clean']
run = """cmake -S . -B build -G "Ninja" -Dcompress=FALSE"""
alias = 'cdec'
[tasks.build]
# description = 'Build Castlevania ROM'
run = "cmake --build build"
alias = 'b'
[tasks.prep_permuter]
# description = 'Prepare a directory for running decomp-permuter'
run = "./scripts/perm"
alias = 'pp'
[tasks.permuter]
# description = 'Run decomp-permuter on the given directory'
run = "python tools/decomp-permuter/permuter.py"
alias = 'p'