mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-05 15:00:49 +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.
12 lines
180 B
C
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;
|
|
}
|