mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 16:18:28 -05:00
17 lines
410 B
CMake
17 lines
410 B
CMake
|
@PACKAGE_INIT@
|
||
|
|
||
|
set_and_check(hiredict_ssl_INCLUDEDIR "@PACKAGE_INCLUDE_INSTALL_DIR@")
|
||
|
|
||
|
include(CMakeFindDependencyMacro)
|
||
|
find_dependency(OpenSSL)
|
||
|
|
||
|
IF (NOT TARGET hiredict::hiredict_ssl)
|
||
|
INCLUDE(${CMAKE_CURRENT_LIST_DIR}/hiredict_ssl-targets.cmake)
|
||
|
ENDIF()
|
||
|
|
||
|
SET(hiredict_ssl_LIBRARIES hiredict::hiredict_ssl)
|
||
|
SET(hiredict_ssl_INCLUDE_DIRS ${hiredict_ssl_INCLUDEDIR})
|
||
|
|
||
|
check_required_components(hiredict_ssl)
|
||
|
|