mirror of
https://github.com/libssh2/libssh2.git
synced 2026-01-27 00:18:12 +03:00
It was an exercise to run old cmake versions in CI and in the test suite. It also revealed that 3.7.2 2017-01-13 is too old to consume libssh2 via `find_package()` due to: ``` CMake Error at bld-libssh2/_pkg/lib/cmake/libssh2/libssh2-config.cmake:35 (add_library): add_library cannot create ALIAS target "libssh2::libssh2" because target "libssh2::libssh2_shared" is IMPORTED. Call Stack (most recent call first): CMakeLists.txt:27 (find_package) ``` The mitigation for this issue requires 3.11. Also: - rename a few existing envs to use the `TEST_` prefix. - make the `find_package` test provider stage verbose. Closes #1591