app
Adom 2D Board
Public Made by Adomby adom
Interactive 2D board view: your EDA's own PCB 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-2dboard" "bin/adom-2dboard"
echo "staged bin/adom-2dboard ($(du -h bin/adom-2dboard | cut -f1))"