summaryrefslogtreecommitdiff
path: root/CMake/curl-config.cmake.in
diff options
context:
space:
mode:
Diffstat (limited to 'CMake/curl-config.cmake.in')
-rw-r--r--CMake/curl-config.cmake.in15
1 files changed, 6 insertions, 9 deletions
diff --git a/CMake/curl-config.cmake.in b/CMake/curl-config.cmake.in
index 5f296343e..1294e173a 100644
--- a/CMake/curl-config.cmake.in
+++ b/CMake/curl-config.cmake.in
@@ -1,15 +1,12 @@
@PACKAGE_INIT@
-if("@USE_OPENSSL@" OR "@CURL_ZLIB@" )
- include(CMakeFindDependencyMacro)
- if ("@USE_OPENSSL@")
- find_dependency(OpenSSL "@OPENSSL_VERSION_MAJOR@")
- endif()
- if("@CURL_ZLIB@")
- find_dependency(ZLIB "@ZLIB_VERSION_MAJOR@")
- endif()
+include(CMakeFindDependencyMacro)
+if(@USE_OPENSSL@)
+ find_dependency(OpenSSL @OPENSSL_VERSION_MAJOR@)
+endif()
+if(@USE_ZLIB@)
+ find_dependency(ZLIB @ZLIB_VERSION_MAJOR@)
endif()
-
include("${CMAKE_CURRENT_LIST_DIR}/@TARGETS_EXPORT_NAME@.cmake")
check_required_components("@PROJECT_NAME@")