From 3454f1c0de43b0605d63c2c5a52417b99fce980a Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Sat, 23 May 2020 13:11:57 +0200 Subject: Update Installation.md (#229) --- docs/Installation.md | 30 +++++++++++++++++++++++------- 1 file 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. -- cgit