We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dce8d1f commit 315b17cCopy full SHA for 315b17c
mysql-concpp-config.cmake.in
@@ -594,18 +594,22 @@ function(find_deps)
594
595
# Try to find the bundled OpenSSL
596
597
+ set(CMAKE_FIND_LIBRARY_SUFFIXES ".so" ".dll" ".dylib")
598
+
599
unset(ssl_lib CACHE)
600
find_library(ssl_lib
601
NAMES ssl libssl
- PATHS ${LIB_PATH}/${vs_suffix}
602
+ PATHS ${LIB_PATH}
603
+ PATH_SUFFIXES private ${vs_suffix}
604
NO_DEFAULT_PATH
605
NO_CACHE
606
)
607
608
unset(ssl_crypto CACHE)
609
find_library(ssl_crypto
610
NAMES crypto libcrypto
611
612
613
614
615
0 commit comments