Commit 80b58951 authored by Matthias Vallentin's avatar Matthias Vallentin Committed by GitHub

Merge pull request #585 from dnthayer/topic/find-openssl

Add "--with-openssl" option to the "configure" script
parents 7839b237 e20e20d9
......@@ -43,6 +43,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
--with-clang=FILE path to clang++ executable
--with-gcc=FILE path to g++ executable
--with-qt-prefix=PATH prefix path for Qt5 cmake modules
--with-openssl=PATH path to OpenSSL library and headers
--dual-build build using both gcc and clang
--build-static build as static and shared library
--build-static-only build as static library only
......@@ -307,6 +308,9 @@ while [ $# -ne 0 ]; do
--with-qt-prefix=*)
append_cache_entry CAF_QT_PREFIX_PATH STRING "$optarg"
;;
--with-openssl=*)
append_cache_entry OPENSSL_ROOT_DIR PATH $optarg
;;
--build-type=*)
append_cache_entry CMAKE_BUILD_TYPE STRING $optarg
;;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment