From aaa4424d9bdeb10f8af5cb4599a0fc2bbaac5553 Mon Sep 17 00:00:00 2001 From: Ian Duncan Date: Thu, 2 Mar 2017 00:19:57 +0900 Subject: [PATCH] Fix CMakeLists.txt specifying a nonexistent pkgconfig package (#518) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index be552ac..ca612d1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -408,7 +408,7 @@ generate_pkg_config ("${CMAKE_CURRENT_BINARY_DIR}/libbrotlienc.pc" DESCRIPTION "Brotli encoder library" VERSION "${BROTLI_VERSION_MAJOR}.${BROTLI_VERSION_MINOR}.${BROTLI_VERSION_REVISION}" URL "https://github.com/google/brotli" - DEPENDS_PRIVATE brotlicommon + DEPENDS_PRIVATE libbrotlicommon LIBRARIES brotlienc) if(NOT BROTLI_BUNDLED_MODE)