mirror of
https://github.com/moparisthebest/curl
synced 2024-11-04 08:35:05 -05:00
e97679a360
Closes #3123
13 lines
305 B
CMake
13 lines
305 B
CMake
@PACKAGE_INIT@
|
|
|
|
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@")
|