mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-05 12:20:52 +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.
9 lines
211 B
CMake
9 lines
211 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
|
|
project(wolfssl_consumer C)
|
|
|
|
find_package(wolfssl CONFIG REQUIRED)
|
|
|
|
add_executable(wolfssl_consumer main.c)
|
|
target_link_libraries(wolfssl_consumer PRIVATE wolfssl::wolfssl)
|