From 5df8bf9d83299b1ec94e13aa9fa7ea5566750e66 Mon Sep 17 00:00:00 2001 From: Yuchen Xie Date: Mon, 10 Oct 2016 19:04:46 +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()