app
adom-layout-viewer
Public Made by Adomby adom
Interactive PCB layout viewer: your EDA's own render plus live net/trace highlighting and per-pad stock, price and wiki lookup
#!/bin/bash
# build.sh — compile the release binary and stage it into bin/ for packaging.
set -euo pipefail
DIR="$(cd "$(dirname "$0")" && pwd)"
cd "$DIR"
cargo build --release
mkdir -p bin
install -m 0755 "target/release/adom-layout-viewer" "bin/adom-layout-viewer"
echo "staged bin/adom-layout-viewer ($(du -h bin/adom-layout-viewer | cut -f1))"