curl-config.cmake.in 305 B

123456789101112
  1. @PACKAGE_INIT@
  2. include(CMakeFindDependencyMacro)
  3. if(@USE_OPENSSL@)
  4. find_dependency(OpenSSL @OPENSSL_VERSION_MAJOR@)
  5. endif()
  6. if(@USE_ZLIB@)
  7. find_dependency(ZLIB @ZLIB_VERSION_MAJOR@)
  8. endif()
  9. include("${CMAKE_CURRENT_LIST_DIR}/@TARGETS_EXPORT_NAME@.cmake")
  10. check_required_components("@PROJECT_NAME@")