From 63477ded0c7a7d60aff33037940f0f0ace5b5e97 Mon Sep 17 00:00:00 2001 From: Yuchen Xie Date: Mon, 10 Oct 2016 20:10:34 +0800 Subject: [PATCH] Correct the library name of LIBHUBBUB_LIBRARIES It should be `hubbub` in `find_library` to make the function work. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7909c3f6..6d166874 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -914,7 +914,7 @@ endif() if (LWS_WITH_HTTP_PROXY) - find_library(LIBHUBBUB_LIBRARIES NAMES libhubbub) + find_library(LIBHUBBUB_LIBRARIES NAMES hubbub) list(APPEND LIB_LIST ${LIBHUBBUB_LIBRARIES} ) endif()