diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2020-01-20 16:48:45 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2020-01-20 20:49:29 (GMT) |
commit | af158149e76519e8864d07b294c0e514c430c725 (patch) | |
tree | 8a1337e03a12aad9a30048c1ce37276a55e42910 /Modules/FindOpenSSL.cmake | |
parent | 74f659f1f2903a137fc50aa3537e0bac927d3f6a (diff) | |
download | CMake-af158149e76519e8864d07b294c0e514c430c725.zip CMake-af158149e76519e8864d07b294c0e514c430c725.tar.gz CMake-af158149e76519e8864d07b294c0e514c430c725.tar.bz2 |
FindOpenSSL: do not mark a local variable as advanced
Diffstat (limited to 'Modules/FindOpenSSL.cmake')
-rw-r--r-- | Modules/FindOpenSSL.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindOpenSSL.cmake b/Modules/FindOpenSSL.cmake index 043fc6c..af713d6 100644 --- a/Modules/FindOpenSSL.cmake +++ b/Modules/FindOpenSSL.cmake @@ -458,7 +458,7 @@ find_package_handle_standard_args(OpenSSL "Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR" ) -mark_as_advanced(OPENSSL_INCLUDE_DIR OPENSSL_LIBRARIES) +mark_as_advanced(OPENSSL_INCLUDE_DIR) if(OPENSSL_FOUND) if(NOT TARGET OpenSSL::Crypto AND |