New hunter make use of HUNTER_TLS_VERIFY variable in cmake -- I have switched in ON.
For some reason after upgrading the hunter, I couldn't build because Catch was not found (hunter would install it but it looks like now it uses Catch2 package instead of Catch...)
I figured out that CMakeLists.txt needs updating: s/Catch/Catch2/. This works for me on Windows and Linux.
New hunter make use of
HUNTER_TLS_VERIFY
variable in cmake -- I have switched inON
.For some reason after upgrading the hunter, I couldn't build because
Catch
was not found (hunter would install it but it looks like now it usesCatch2
package instead ofCatch
...) I figured out thatCMakeLists.txt
needs updating:s/Catch/Catch2/
. This works for me on Windows and Linux.