diff options
author | Tongliang Liao <xkszltl@gmail.com> | 2021-10-06 00:28:36 +0800 |
---|---|---|
committer | Michael Grunder <michael.grunder@gmail.com> | 2021-10-09 13:19:39 -0700 |
commit | 51c740824be0a604d931bdc6738a74f1ee0abb36 (patch) | |
tree | 93dec84a94c0a9f15d28083f145484866235668f | |
parent | 632bf07183a9008fd0c9d315a517738c37c7a973 (diff) |
Remove extra comma from cmake var.
Or it'll be treated as part of the var name.
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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} (.+)$") |