Files
wolfssl/cmake/Config.cmake.in
T
Tobias Frauenschläger 540b51eb28 CMake fixes and improvements
* 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.
2026-02-02 10:26:58 +01:00

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" )