doc.rustdesk.com/content/dev/build/osx/_index.en.md

20 lines
378 B
Markdown
Raw Normal View History

2022-05-14 09:02:33 +02:00
---
title: macOS
weight: 21
---
```
cd
git clone https://github.com/microsoft/vcpkg
2022-05-22 02:31:31 +02:00
cd vcpkg
2022-05-14 09:02:33 +02:00
git checkout 2022.04.12
./bootstrap-vcpkg.sh
brew install nasm yasm
./vcpkg install libvpx libyuv opus
git clone https://github.com/rustdesk/rustdesk
cd rustdesk
2022-05-22 02:31:31 +02:00
export VCPKG_ROOT=$HOME/vcpkg
2022-07-30 11:02:51 +02:00
wget https://github.com/c-smile/sciter-sdk/raw/master/bin.osx/libsciter.dylib
2022-05-22 02:31:31 +02:00
cargo run
2022-05-14 09:02:33 +02:00
```