1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

BUGFIX: Properly add libcyassl to the lib list.

This would cause failure to build the test apps with CyaSSL.
This commit is contained in:
Joakim Soderberg 2013-03-23 08:55:28 +08:00 committed by Andy Green
parent c2012e40ed
commit 9c037c05fb

View file

@ -430,7 +430,7 @@ if (WITH_SSL)
include_directories(${inc} ${inc}/cyassl)
endforeach()
list(APPEND ${LIB_LIST} ${CYASSL_LIB})
list(APPEND LIB_LIST ${CYASSL_LIB})
else()
# TODO: Add support for STATIC also.
find_package(OpenSSL REQUIRED)