Add build and install scripts
This commit is contained in:
parent
e8059d2fbd
commit
af81c26d98
3 changed files with 35 additions and 0 deletions
14
meta/build
Executable file
14
meta/build
Executable file
|
|
@ -0,0 +1,14 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
pushd gdn-cli
|
||||
cargo build --release
|
||||
popd
|
||||
|
||||
pushd gdn-app
|
||||
pnpm install --frozen-lockfile
|
||||
pnpm tauri build
|
||||
popd
|
||||
|
||||
echo "gdn-cli can be found at target/release/gdn-cli"
|
||||
echo "gdn-app can be found at target/release/gdn-app"
|
||||
Loading…
Add table
Add a link
Reference in a new issue