rename build variant (build.sh build -> build.sh linux) (#49)

This commit is contained in:
septs 2024-03-15 23:52:20 +08:00 committed by GitHub
parent 3a879e86a5
commit 695b72f183
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -18,7 +18,7 @@ jobs:
- name: Setup Toolchain
run: ./scripts/setup-linux.sh
- name: Build for Linux
run: ./scripts/build.sh build
run: ./scripts/build.sh linux
- name: Build for Debian
run: ./scripts/build.sh debian
- name: Build for Windows with MinGW

View file

@ -33,7 +33,7 @@ lpac is dynamic-linked, Release is built by Github action, if you can't run it y
sudo apt install build-essential cmake git g++ libpcsclite-dev libcurl4-openssl-dev
git clone --depth=1 https://github.com/estkme-group/lpac
cd lpac
./scripts/build.sh build
./scripts/build.sh linux
```
then execute `./output/lpac` to use.

View file

@ -37,7 +37,7 @@ mkdir build
cd build || exit 1
case "${1:-}" in
build)
linux)
cmake .. -GNinja
ninja
chmod +x output/lpac