From 1283d2cf345f8def4c75302b1c655918f6d31615 Mon Sep 17 00:00:00 2001 From: levlam Date: Tue, 18 Feb 2020 19:41:17 +0300 Subject: [PATCH] Update UWP build instructions. GitOrigin-RevId: 639b7451fc217a3eaa28455e772c1e1eb80becf5 --- build.html | 2 +- example/uwp/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.html b/build.html index 678d04e54..0c458fcd7 100644 --- a/build.html +++ b/build.html @@ -675,7 +675,7 @@ function onOptionsChanged() { commands.push('cd vcpkg'); commands.push(local + 'bootstrap-vcpkg.bat'); if (target === 'C++/CX') { - commands.push(local + 'vcpkg.exe install openssl:arm-uwp openssl:x64-uwp openssl:x86-uwp zlib:arm-uwp zlib:x64-uwp zlib:x86-uwp'); + commands.push(local + 'vcpkg.exe install openssl-uwp:arm-uwp openssl-uwp:x64-uwp openssl-uwp:x86-uwp zlib:arm-uwp zlib:x64-uwp zlib:x86-uwp'); } else { if (build_64bit) { commands.push(local + 'vcpkg.exe install openssl:x64-windows zlib:x64-windows'); diff --git a/example/uwp/README.md b/example/uwp/README.md index 866cc2d30..65952d63c 100644 --- a/example/uwp/README.md +++ b/example/uwp/README.md @@ -10,7 +10,7 @@ This is an example of building TDLib SDK for Universal Windows Platform and an e * Install `zlib` and `openssl` for all UWP architectures using `vcpkg`: ``` cd -.\vcpkg.exe install openssl:arm-uwp openssl:x64-uwp openssl:x86-uwp zlib:arm-uwp zlib:x64-uwp zlib:x86-uwp +.\vcpkg.exe install openssl-uwp:arm-uwp openssl-uwp:x64-uwp openssl-uwp:x86-uwp zlib:arm-uwp zlib:x64-uwp zlib:x86-uwp ``` * (Optional. For XML documentation generation.) Download [PHP](https://windows.php.net/download#php-7.2). Add the path to php.exe to the PATH environment variable. * Download and install [gperf](https://sourceforge.net/projects/gnuwin32/files/gperf/3.0.1/). Add the path to gperf.exe to the PATH environment variable.