mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-05 16:30:49 +02:00
540b51eb28
* Minor fixes to the CMakeLists.txt * Add more options to the CMake infrastructure already present in the autoconf infrastructure * An autoconf build now also generates and installs files required to consume the installed wolfssl library via CMake. * Added test for autoconf-CMake interworking Work is mostly done by Codex and Curser.
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" )
|