cmake/Utilities/cmcurl/CMake/curl-config.cmake.in

13 lines
305 B
CMake
Raw Normal View History

2018-11-29 20:27:00 +01:00
@PACKAGE_INIT@
2018-10-28 12:09:07 +01:00
include(CMakeFindDependencyMacro)
2018-11-29 20:27:00 +01:00
if(@USE_OPENSSL@)
find_dependency(OpenSSL @OPENSSL_VERSION_MAJOR@)
2018-10-28 12:09:07 +01:00
endif()
2018-11-29 20:27:00 +01:00
if(@USE_ZLIB@)
find_dependency(ZLIB @ZLIB_VERSION_MAJOR@)
2018-10-28 12:09:07 +01:00
endif()
2018-11-29 20:27:00 +01:00
include("${CMAKE_CURRENT_LIST_DIR}/@TARGETS_EXPORT_NAME@.cmake")
check_required_components("@PROJECT_NAME@")