Skip to content

Commit

Permalink
build(just): add build and build-target(s) to justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
LGUG2Z committed Feb 5, 2025
1 parent 95d758e commit 2ca9c90
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,15 @@ install-target target:
install:
just install-targets komorebic komorebic-no-console komorebi komorebi-bar komorebi-gui

build-targets *targets:
"{{ targets }}" -split ' ' | ForEach-Object { just build-target $_ }

build-target target:
cargo +stable build --release --package {{ target }} --locked

build:
just build-targets komorebic komorebic-no-console komorebi komorebi-bar komorebi-gui

run target:
cargo +stable run --bin {{ target }} --locked

Expand Down

0 comments on commit 2ca9c90

Please sign in to comment.