Descargar msvc e instalar.
Descargar rustup-init.exe e instalar.
Usar git-bash para ejecutar los siguientes comandos, download vcpkg
, install libvpx
, libyuv
, opus
.
git clone https://github.com/microsoft/vcpkg
cd vcpkg
git checkout 2023.04.15
cd ..
vcpkg/bootstrap-vcpkg.bat
export VCPKG_ROOT=$PWD/vcpkg
vcpkg/vcpkg install libvpx:x64-windows-static libyuv:x64-windows-static opus:x64-windows-static aom:x64-windows-static
Agregar variable de entorno VCPKG_ROOT
=<path>\vcpkg
.
Uso de versiones de escritorio sciter para GUI, descargue sciter.dll
rust-bindgen depende del clang, descargar llvm e instalar, agregar variable de entorno LIBCLANG_PATH
=<llvm_install_dir>/bin
.
git clone https://github.com/rustdesk/rustdesk
cd rustdesk
mkdir -p target/debug
mv sciter.dll target/debug
cargo run