-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJustfile
More file actions
42 lines (32 loc) · 1.28 KB
/
Justfile
File metadata and controls
42 lines (32 loc) · 1.28 KB
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
export RUST_BACKTRACE := "1"
install_at := replace(home_directory(), "\\", "/") / ".local/bin"
s *args:
just schedule-hell {{args}}
endfirstbreak *args:
just schedule-hell --marker "\"end first break\"" {{args}}
[working-directory: 'examples/schedule-hell']
schedule-hell *args:
cargo run -- {{args}}
vst:
cargo xtask bundle shapemaker --release --features vst
gsudo cp "target/bundled/Shapemaker VST.vst3/Contents/x86_64-win/Shapemaker VST.vst3" "C:/Program Files/Common Files/VST3/Shapemaker VST.vst3"
web:
wasm-pack build --target web -d examples/web --features web --no-default-features
touch examples/web/.nojekyll
echo "" >> examples/web/.gitignore
echo "!index.html" >> examples/web/.gitignore
start-web:
just web
python3 -m http.server --directory examples/web
[working-directory: 'paper']
paper:
# just analyze_times disabled because it needs manual adjustements in the render loop pipeline diagram
cargo run --package specimen
cargo run --package dna-analysis-machine
typstyle format-all ../paper # . does not work, it formats nothing
typst compile --root .. main.typ
readme:
cd examples/gallery; ./fill.rb
timings compare_with="":
cargo build -p schedule-hell
python script/debug-performance.py {{compare_with}}