From 98cd10d1c1091c5b2bd30493906d3d764a14bf6d Mon Sep 17 00:00:00 2001 From: Lucas Queiroz <86672557+lucasqueiroz23@users.noreply.github.com> Date: Tue, 8 Jul 2025 10:47:32 -0300 Subject: [PATCH] INSTALL_CMAKE: fixes build result directories In the CMake installation instructions, the resulting static library, examples and tests are actually found in `bld`, not in `bin`. Closes #1617 --- docs/INSTALL_CMAKE.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/INSTALL_CMAKE.md b/docs/INSTALL_CMAKE.md index b9de2853..848bd1d7 100644 --- a/docs/INSTALL_CMAKE.md +++ b/docs/INSTALL_CMAKE.md @@ -36,8 +36,8 @@ Use this with CMake 3.12.x or older: libssh2 will be built as a static library and will use any cryptography library available. The library binary will be put in -`bin/src`, with the examples in `bin/example` and the tests in -`bin/tests`. +`bld/src`, with the examples in `bld/example` and the tests in +`bld/tests`. Customising the build ---------------------