From 89e7a35a81d8efd4fcedff95629e1dfbd41d4eb2 Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Mon, 6 Jul 2020 18:34:14 -0700 Subject: [PATCH] add cmake comment about using a custom zlib --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7552d5b4..522c2883 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -199,6 +199,7 @@ if (USE_TLS) endif() endif() +# Use ZLIB_ROOT CMake variable if you need to use your own zlib find_package(ZLIB REQUIRED) include_directories(${ZLIB_INCLUDE_DIRS}) target_link_libraries(ixwebsocket ${ZLIB_LIBRARIES})