aboutsummaryrefslogtreecommitdiffhomepage
path: root/build.html
diff options
context:
space:
mode:
authorlevlam <levlam@telegram.org>2021-09-15 09:26:40 +0300
committerlevlam <levlam@telegram.org>2021-09-15 09:26:40 +0300
commit457ab66fe7c919c7173b8ef4eb8356cdb1cc9354 (patch)
tree58bfd8e49d98f09ac5a5575443a99187de826fa5 /build.html
parentded0b5790576cc72bdfe0d80ff67c0d787edaabb (diff)
Fix gperf install instructions through vcpkg.
Diffstat (limited to 'build.html')
-rw-r--r--build.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.html b/build.html
index 5d564b20c..c929ef87d 100644
--- a/build.html
+++ b/build.html
@@ -725,12 +725,12 @@ function onOptionsChanged() {
commands.push('cd vcpkg');
commands.push(local + 'bootstrap-vcpkg.bat');
if (target === 'C++/CX') {
- commands.push(local + 'vcpkg.exe install gperf openssl-uwp:arm-uwp openssl-uwp:x64-uwp openssl-uwp:x86-uwp zlib:arm-uwp zlib:x64-uwp zlib:x86-uwp');
+ commands.push(local + 'vcpkg.exe install gperf:x86-windows 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 gperf openssl:x64-windows zlib:x64-windows');
+ commands.push(local + 'vcpkg.exe install gperf:x64-windows openssl:x64-windows zlib:x64-windows');
} else {
- commands.push(local + 'vcpkg.exe install gperf openssl:x86-windows zlib:x86-windows');
+ commands.push(local + 'vcpkg.exe install gperf:x86-windows openssl:x86-windows zlib:x86-windows');
}
}
commands.push('cd ..');