# RustDesk Sidecar Binary Place the compiled RustDesk binary here: - **Windows**: `rustdesk-x86_64-pc-windows-msvc.exe` → rename to `rustdesk.exe` - **Linux**: `rustdesk-x86_64-unknown-linux-gnu` → rename to `rustdesk` - **macOS**: `rustdesk-universal-apple-darwin` → rename to `rustdesk` ## How to build RustDesk See `shelled/rustdesk-as-ref/CLAUDE.md` for build instructions. ### Quick build (Windows with vcpkg) ```powershell cd shelled/rustdesk-as-ref set VCPKG_ROOT= cargo build --release ``` The output binary will be at: `target/release/rustdesk.exe` Copy it to this directory: ```powershell copy target\release\rustdesk.exe shelled\shelled-os-ui\src-tauri\binaries\rustdesk.exe ``` Tauri will automatically bundle this binary when you run `tauri build`.