summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKitzunu <24550914+Kitzunu@users.noreply.github.com>2020-05-23 13:11:57 +0200
committerGitHub <noreply@github.com>2020-05-23 13:11:57 +0200
commit3454f1c0de43b0605d63c2c5a52417b99fce980a (patch)
treea97d469fa1ffc57e21837f24890468f07c7c2280 /docs
parent0e6603b7707db969ab1285f66181d8476c7127da (diff)
downloadwiki-3454f1c0de43b0605d63c2c5a52417b99fce980a.tar.gz
wiki-3454f1c0de43b0605d63c2c5a52417b99fce980a.tar.bz2
wiki-3454f1c0de43b0605d63c2c5a52417b99fce980a.zip
Update Installation.md (#229)
Diffstat (limited to 'docs')
-rw-r--r--docs/Installation.md30
1 files changed, 23 insertions, 7 deletions
diff --git a/docs/Installation.md b/docs/Installation.md
index b3940ed..b1663e3 100644
--- a/docs/Installation.md
+++ b/docs/Installation.md
@@ -116,19 +116,35 @@ You will find your freshly compiled binaries in the Build\bin\Release or Build\b
You will need the following files in order for the core to function properly:
```
-libeay32.dll
-libmySQL.dll
-ssleay32.dll
ace.dll
-worldserver.conf.dist
-worldserver.exe
+libeay32.dll / libcrypto-1_1.dll / libcrypto-1_1-x64.dll
+libmySQL.dll
+ssleay32.dll / libssl-1_1.dll / libssl-1_1-x64.dll
authserver.conf.dist
authserver.exe
+worldserver.conf.dist
+worldserver.exe
```
-Copy `libeay32.dll` and `ssleay32.dll` from OpenSSL install folder into `CMAKE_INSTALL_PREFIX`.
+The `.dll` files needs to be copied manually from their install folder into your compiled folder.
+
+`libmysql.dll` (C:\MySQL\MySQL Server 5.x\lib\)
+
+For OpenSSL 1.0.x:
+
+* (C:\OpenSSL-Win32\ or C:\OpenSSL-Win64\)
+ * `libeay32.dll`
+ * `ssleay32.dll`
+
+For OpenSSL 1.1.x:
+
+* Win32 (C:\OpenSSL-Win32\bin)
+ * `libcrypto-1_1.dll`
+ * `libssl-1_1.dll`
-Copy `libmysql.dll` from your MYSQL_LIBRARY path into `CMAKE_INSTALL_PREFIX`
+* Win64 (C:\OpenSSL-Win64\bin)
+ * `libcrypto-1_1-x64.dll`
+ * `libssl-1_1-x64.dll`
**Note:** Do not use ARM architecture as azerothcore requires SSE2 and ARM doesn't support it.