1# CMake consumer test 2 3This is a minimal CMake project that consumes the installed wolfSSL 4package config. 5 6## Build 7 8``` 9cmake -S . -B build -DCMAKE_PREFIX_PATH=/path/to/wolfssl/install 10cmake --build build 11./build/wolfssl_consumer 12```