From 51c740824be0a604d931bdc6738a74f1ee0abb36 Mon Sep 17 00:00:00 2001 From: Tongliang Liao Date: Wed, 6 Oct 2021 00:28:36 +0800 Subject: Remove extra comma from cmake var. Or it'll be treated as part of the var name. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a8dfaa9..eb43f01 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ PROJECT(hiredis) OPTION(ENABLE_SSL "Build hiredis_ssl for SSL support" OFF) OPTION(DISABLE_TESTS "If tests should be compiled or not" OFF) -OPTION(ENABLE_SSL_TESTS, "Should we test SSL connections" OFF) +OPTION(ENABLE_SSL_TESTS "Should we test SSL connections" OFF) MACRO(getVersionBit name) SET(VERSION_REGEX "^#define ${name} (.+)$") -- cgit v1.2.3