Add build and install scripts

This commit is contained in:
Joscha 2025-01-25 16:31:24 +01:00
parent e8059d2fbd
commit af81c26d98
3 changed files with 35 additions and 0 deletions

14
meta/build Executable file
View 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"