From 7146abee8bfe3798485715d9d02329f3314a3f8c Mon Sep 17 00:00:00 2001 From: Dustin Rodrigues Date: Sun, 24 Jun 2018 10:30:22 -0400 Subject: [PATCH] MINIFICPP-541 - fix openssl endif cmake warning --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4a4e2e65b9..c4f3e93358 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -114,7 +114,7 @@ else() # Include OpenSSL find_package (OpenSSL REQUIRED) -endif(USE_SYSTEM_OPENSSL) +endif() if (OPENSSL_FOUND) include_directories(${OPENSSL_INCLUDE_DIR})