Files
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

12 lines
180 B
C

#include <wolfssl/options.h>
#include <wolfssl/ssl.h>
int main(void)
{
if (wolfSSL_Init() != WOLFSSL_SUCCESS) {
return 1;
}
wolfSSL_Cleanup();
return 0;
}