Some tips for customizing RustDesk for Windows (other platforms might require additional changes)
# Embedding Sciter.dll
If you want a single portable executable file, you can either statically link Sciter, or embed the DLL. Statically linking it requires you [license Sciter](https://sciter.com/prices/), which costs money--so I went with embedding the dll.
1. Copy sciter.dll to your project root directory (where Cargo.toml resides)
2. Add the following lines into ```fn main()``` in src/main.rs
Note: Do not remove the "..\\" as main.rs resides in /rustdesk/src, and will not be able to find the file otherwise. Alternatively you can put ```sciter.dll``` in /rustdesk/src