mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-05 17:40:50 +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.
13 lines
236 B
Markdown
13 lines
236 B
Markdown
# CMake consumer test
|
|
|
|
This is a minimal CMake project that consumes the installed wolfSSL
|
|
package config.
|
|
|
|
## Build
|
|
|
|
```
|
|
cmake -S . -B build -DCMAKE_PREFIX_PATH=/path/to/wolfssl/install
|
|
cmake --build build
|
|
./build/wolfssl_consumer
|
|
```
|