aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--coin_build_instructions.py2
-rw-r--r--setup.py12
2 files changed, 8 insertions, 6 deletions
diff --git a/coin_build_instructions.py b/coin_build_instructions.py
index ba823b87d..8d88b9633 100644
--- a/coin_build_instructions.py
+++ b/coin_build_instructions.py
@@ -76,7 +76,7 @@ def call_setup(python_ver):
elif CI_HOST_OS == "Windows":
cmd += ["--qmake=" + CI_ENV_INSTALL_DIR + "\\bin\\qmake.exe",
- "--openssl=C:\\openssl\\bin\\openssl"]
+ "--openssl=C:\\openssl\\bin"]
else:
cmd += ["--qmake=" + CI_ENV_INSTALL_DIR + "/bin/qmake"]
cmd += ["--build-tests",
diff --git a/setup.py b/setup.py
index 6a0e02706..ad6303569 100644
--- a/setup.py
+++ b/setup.py
@@ -56,9 +56,10 @@ and
--cmake=/path/to/bin/cmake
respectively.
-For windows, if OpenSSL support is required, it is necessary to specify
-the directory with:
- --openssl=/path/to/openssl/bin
+For Windows, if OpenSSL support is required, it's necessary to specify
+the directory path that contains the OpenSSL shared libraries
+"libeay32.dll" and "ssleay32.dll", for example:
+ --openssl=C:\OpenSSL-Win64\bin
ADDITIONAL OPTIONS:
@@ -150,8 +151,9 @@ OPTIONAL:
Specifying the --openssl option is only required on Windows.
It is a no-op for other platforms.
- You can specify the location of OpenSSL DLLs with option:
- --openssl=</path/to/openssl/bin>.
+ You can specify the location of the OpenSSL DLLs with the
+ following option:
+ --openssl=</path/to/openssl/bin-directory>.
You can download OpenSSL for Windows here:
http://slproweb.com/products/Win32OpenSSL.html (*)