Files
wolfssl/cmake/wolfssl-config-version.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

18 lines
533 B
CMake

# Generated by autoconf; do not edit.
set(PACKAGE_VERSION "@PACKAGE_VERSION@")
# Keep behavior aligned with the native CMake build's AnyNewerVersion semantics:
# compatible when the installed version is >= the requested version.
set(PACKAGE_VERSION_COMPATIBLE FALSE)
set(PACKAGE_VERSION_EXACT FALSE)
if (PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
# not compatible
else ()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
if (PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
set(PACKAGE_VERSION_EXACT TRUE)
endif ()
endif ()