-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
20 lines (16 loc) · 824 Bytes
/
justfile
File metadata and controls
20 lines (16 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
build:
cargo xtask bundle malt
release:
cargo xtask bundle malt --release
run:
./target/bundled/SAIAudio_Malt.exe
# this command randomly worked once, then never again
# i've been trying to get it to work again for the last hour and it's not working anymore
# the working output has been saved to ./flamegraph-2024-12-01.svg
flamegraph:
powershell -Command 'Start-Process powershell -Verb runAs -ArgumentList "-Command","cd `"{{invocation_directory()}}`" ; echo (Get-Item .).FullName ; cargo flamegraph --bin malt ; pause"'
REAPER_PATH := "C:/Programs/REAPER Portable/reaper.exe"
reaper:
# launch reaper in new instance
# bash just hangs forever and also makes arrow keys type '[A' '[D' and some shit so we use powershell because fuck bash
powershell -Command ".\"{{REAPER_PATH}}\" -newinst"