Skip to content

Commit 1a7530c

Browse files
authored
fix search paths for ssl and crypto static libraries (#519)
1 parent 4764604 commit 1a7530c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmake/FindSSL.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ endif()
3333
# find ssl static library
3434
find_library(SSL_LIBRARY_STATIC NAMES ${SSL_LIBRARY_STATIC_NAME}
3535
PATHS ${SSL_DIR}
36-
PATH_SUFFIXES lib64 lib build/ssl build/ssl/${CMAKE_BUILD_TYPE}
36+
PATH_SUFFIXES lib64 lib build build/ssl build/ssl/${CMAKE_BUILD_TYPE}
3737
NO_DEFAULT_PATH)
3838

3939
# find crypto static library
4040
find_library(CRYPTO_LIBRARY_STATIC NAMES ${CRYPTO_LIBRARY_STATIC_NAME}
4141
PATHS ${SSL_DIR}
42-
PATH_SUFFIXES lib64 lib build/crypto build/crypto/${CMAKE_BUILD_TYPE}
42+
PATH_SUFFIXES lib64 lib build build/crypto build/crypto/${CMAKE_BUILD_TYPE}
4343
NO_DEFAULT_PATH)
4444

4545
include (FindPackageHandleStandardArgs)

0 commit comments

Comments
 (0)