this repo has no description
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

🔧 Make just install work on Windows too

+3 -1
+3 -1
Justfile
··· 1 1 export RUST_BACKTRACE := "1" 2 + install_at := replace(home_directory(), "\\", "/") / ".local/bin" 2 3 3 4 build: 4 5 cargo build --bin shapemaker --features mp4,vst ··· 22 23 python3 -m http.server --directory examples/web 23 24 24 25 install: 25 - cp shapemaker ~/.local/bin/ 26 + mkdir -p {{install_at}} 27 + cp shapemaker {{install_at}} 26 28 27 29 example-video out="out.mp4" args='': 28 30 RUST_BACKTRACE=full ./shapemaker video --colors examples/colorschemes/palenight.css {{out}} --sync-with examples/schedule-hell.midi --audio examples/schedule-hell.flac --grid-size 16x10 --resolution 480 {{args}}