mirror of https://github.com/wolfSSL/wolfssl.git
15 lines
399 B
CMake
15 lines
399 B
CMake
@PACKAGE_INIT@
|
|
# Autoconf-generated configs won't define PACKAGE_PREFIX_DIR; fall back to the
|
|
# configured install prefix for non-relocatable packages.
|
|
if (NOT DEFINED PACKAGE_PREFIX_DIR)
|
|
set(PACKAGE_PREFIX_DIR "@WOLFSSL_PREFIX_ABS@")
|
|
endif()
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
if (@HAVE_PTHREAD@)
|
|
find_dependency(Threads)
|
|
endif()
|
|
|
|
|
|
include ( "${CMAKE_CURRENT_LIST_DIR}/wolfssl-targets.cmake" )
|