2018-07-18 07:31:51 +08:00
|
|
|
@PACKAGE_INIT@
|
2017-09-10 22:56:16 +08:00
|
|
|
|
2018-10-12 02:55:53 +08:00
|
|
|
if("@USE_OPENSSL@" OR "@CURL_ZLIB@" )
|
2018-09-16 07:15:08 +08:00
|
|
|
include(CMakeFindDependencyMacro)
|
2018-10-12 02:55:53 +08:00
|
|
|
if ("@USE_OPENSSL@")
|
|
|
|
find_dependency(OpenSSL "@OPENSSL_VERSION_MAJOR@")
|
|
|
|
endif()
|
|
|
|
if("@CURL_ZLIB@")
|
|
|
|
find_dependency(ZLIB "@ZLIB_VERSION_MAJOR@")
|
|
|
|
endif()
|
2018-07-17 16:13:18 +08:00
|
|
|
endif()
|
|
|
|
|
2018-10-12 02:55:53 +08:00
|
|
|
|
2018-07-18 07:31:51 +08:00
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@TARGETS_EXPORT_NAME@.cmake")
|
|
|
|
check_required_components("@PROJECT_NAME@")
|