From 6a90dc72591ad20e0b28fd73012fb9711998bf6a Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Sat, 7 Nov 2020 09:40:54 -0800 Subject: [PATCH] (cmake) DEFLATE -> Deflate in CMake to stop warnings about casing --- CMake/FindDeflate.cmake | 2 +- CMakeLists.txt | 2 +- docs/CHANGELOG.md | 4 ++++ ixwebsocket/IXWebSocketVersion.h | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CMake/FindDeflate.cmake b/CMake/FindDeflate.cmake index 99aec8c8..ebbd9fdf 100644 --- a/CMake/FindDeflate.cmake +++ b/CMake/FindDeflate.cmake @@ -5,7 +5,7 @@ include(FindPackageHandleStandardArgs) find_path(DEFLATE_INCLUDE_DIRS libdeflate.h) find_library(DEFLATE_LIBRARY deflate) -find_package_handle_standard_args(DEFLATE +find_package_handle_standard_args(Deflate FOUND_VAR DEFLATE_FOUND REQUIRED_VARS diff --git a/CMakeLists.txt b/CMakeLists.txt index ef5e3bdd..8e818947 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -203,7 +203,7 @@ if (USE_ZLIB) endif() # brew install libdeflate -find_package(DEFLATE) +find_package(Deflate) if (DEFLATE_FOUND) include_directories(${DEFLATE_INCLUDE_DIRS}) target_link_libraries(ixwebsocket ${DEFLATE_LIBRARIES}) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 0d99a43e..7ed2eb04 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,10 @@ All changes to this project will be documented in this file. +## [10.5.6] - 2020-11-07 + +(cmake) DEFLATE -> Deflate in CMake to stop warnings about casing + ## [10.5.5] - 2020-11-07 (ws autoroute) Display result in compliant way (AUTOROUTE IXWebSocket :: N ms) so that result can be parsed easily diff --git a/ixwebsocket/IXWebSocketVersion.h b/ixwebsocket/IXWebSocketVersion.h index 663ec7e2..691201a6 100644 --- a/ixwebsocket/IXWebSocketVersion.h +++ b/ixwebsocket/IXWebSocketVersion.h @@ -6,4 +6,4 @@ #pragma once -#define IX_WEBSOCKET_VERSION "10.5.5" +#define IX_WEBSOCKET_VERSION "10.5.6"