From 3e78b49e01bb74bf3f516b742852b25cd11d2aab Mon Sep 17 00:00:00 2001 From: Maxim Samsonov Date: Wed, 6 Dec 2023 23:11:56 +0300 Subject: [PATCH] Fixed Windows build documentation --- docs/installation.adoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/installation.adoc b/docs/installation.adoc index 866284a247..e48eaed9a1 100644 --- a/docs/installation.adoc +++ b/docs/installation.adoc @@ -203,8 +203,8 @@ If you need to target 32-bit platform you'll need to to replace `x64-windows` wi ---- cmake -B build -G "Visual Studio 16 2019" -A x64 -DCMAKE_TOOLCHAIN_FILE=%VCPKG_ROOT%\scripts\buildsystems\vcpkg.cmake \ -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=off -DCRYPTO_BACKEND="botan" . -cmake --build . --config Release -cmake --install . +cmake --build build --config Release +cmake --install build ---- -- Replace CRYPTO_BACKEND parameter to "openssl" if you target this backend. @@ -238,8 +238,8 @@ In such case use OPENSSL_ROOT_DIR. ---- cmake -B build -G "Visual Studio 16 2019" -A x64 -DOPENSSL_ROOT_DIR= -DCMAKE_TARGET_PREFIX= \ -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=off -DCRYPTO_BACKEND="botan" . -cmake --build . --config Release -cmake --install . +cmake --build build --config Release +cmake --install build ---- -- Replace CRYPTO_BACKEND parameter to "openssl" if you target this backend, use OPENSSL_ROOT_DIR and CMAKE_TARGET_PREFIX optionally as explained above