Skip to content

Commit

Permalink
Fix gperf install instructions through vcpkg.
Browse files Browse the repository at this point in the history
  • Loading branch information
levlam committed Sep 15, 2021
1 parent ded0b57 commit 457ab66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.html
Original file line number Diff line number Diff line change
Expand Up @@ -725,12 +725,12 @@
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 ..');
Expand Down

0 comments on commit 457ab66

Please sign in to comment.