diff options
author | elilchen <[email protected]> | 2023-02-16 13:39:08 +0800 |
---|---|---|
committer | elilchen <[email protected]> | 2023-02-16 13:39:08 +0800 |
commit | ad40d650702219ee203acfd2088450fafa3ea8b9 (patch) | |
tree | d33165c37ead6cb29d2d8dd143d2e0f2a7fc48bd /build.rs | |
parent | 7c3be2d9fb7505969c783f8593e9924067f015ea (diff) | |
download | rustdesk-server-ad40d650702219ee203acfd2088450fafa3ea8b9.tar.gz rustdesk-server-ad40d650702219ee203acfd2088450fafa3ea8b9.zip |
issues #192 add MicrosoftEdgeWebview2Setup and fix the "VCRUNTIME140.dll Is Missing" error on windows server 2022
Diffstat (limited to 'build.rs')
-rw-r--r-- | build.rs | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,3 +1,6 @@ fn main() { hbb_common::gen_version(); + if cfg!(target_os = "windows") { + static_vcruntime::metabuild(); + } } |