Skip to content

Commit 688f61f

Browse files
committed
[*] update Makefile
1 parent ad21d2d commit 688f61f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/linux-wlr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- run: echo "The ${{ github.workspace }} is now ready to test your code on the runner."
1818
- run: ls ${{ github.workspace }}
1919
- run: sudo apt update
20-
- run: sudo apt install libxcb-composite0-dev upx imagemagick libasound2-dev libpipewire-0.3-dev libx264-dev libx11-dev libxi-dev libxtst-dev libevdev-dev
20+
- run: sudo apt install libxcb-composite0-dev upx imagemagick libasound2-dev libpipewire-0.3-dev libx264-dev
2121

2222
- run: echo "start install Rust..."
2323
- name: Install Rust

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ android-debug:
2525
$(android-build-env) $(run-env) cargo apk run --lib -p ${app-name} --no-default-features --features=mobile,android
2626

2727
desktop-build:
28-
$(desktop-build-env) cargo build --no-default-features --features=${desktop-features}
28+
$(desktop-build-env) cargo build --bin ${app-name} --no-default-features --features=${desktop-features}
2929

3030
desktop-build-release:
31-
$(desktop-build-env) cargo build --release --no-default-features --features=${desktop-features}
31+
$(desktop-build-env) cargo build --release --bin ${app-name} --no-default-features --features=${desktop-features}
3232

3333
desktop-debug:
3434
$(desktop-build-env) $(run-env) cargo run --bin ${app-name} --no-default-features --features=${desktop-features}

0 commit comments

Comments
 (0)