From fa986fefe4665ffbb580e96eab5098aceabd0ab3 Mon Sep 17 00:00:00 2001 From: bakinovsky-m Date: Tue, 20 Apr 2021 18:11:38 +0300 Subject: [PATCH] Fixed typo in CMakeLists.txt prevented SSL-test from running --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a8dfaa98b..eb43f0108 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} (.+)$")