From 783622f3d2eda2f7a551d3a0b5b0a0766688feb4 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 13 Mar 2026 22:21:32 +0000 Subject: [PATCH] docs: add build output location and install instructions The README now explains where to find the compiled binary (target/release/nanoimg) and how to install it into PATH via cargo install. --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 0f3e726..979b1b7 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,18 @@ cargo build --release # CPU + GPU (Vulkan/Metal/DX12 vi cargo build --release --no-default-features # CPU only ``` +The compiled binary is at `target/release/nanoimg`. Run it directly: + +``` +./target/release/nanoimg ~/photos "sunset over water" +``` + +Or install it into your PATH so you can use `nanoimg` from anywhere: + +``` +cargo install --path . +``` + GPU auto-detects at runtime. Falls back to CPU if no GPU found. ## Test