diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-03-12 17:18:40 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-03-16 22:56:50 +0100 |
commit | 37a05418820dfcdb68bc0d535e76e63945b45917 (patch) | |
tree | 332700ffeb5c378e8768309a71a7d52f3f0064a1 /lib | |
parent | 95c36fff75883ace6e8e7a89b94362de2dd1857f (diff) | |
download | curl-37a05418820dfcdb68bc0d535e76e63945b45917.tar.gz |
cmake: add support for building with wolfSSLbagder/cmake-wolfssl
My working build cmdline:
$ cmake -DCMAKE_PREFIX_PATH=$HOME/build-wolfssl -DCMAKE_USE_WOLFSSL=ON .
Assisted-by: Brad King
Closes #5095
Diffstat (limited to 'lib')
-rw-r--r-- | lib/curl_config.h.cmake | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/curl_config.h.cmake b/lib/curl_config.h.cmake index 98cdf5145..8320f8710 100644 --- a/lib/curl_config.h.cmake +++ b/lib/curl_config.h.cmake @@ -945,6 +945,9 @@ ${SIZEOF_TIME_T_CODE} /* if BearSSL is enabled */ #cmakedefine USE_BEARSSL 1 +/* if WolfSSL is enabled */ +#cmakedefine USE_WOLFSSL 1 + /* if libSSH2 is in use */ #cmakedefine USE_LIBSSH2 1 |