summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFrancesco Borzì <borzifrancesco@gmail.com>2019-08-13 18:17:17 +0200
committerGitHub <noreply@github.com>2019-08-13 18:17:17 +0200
commitc0045cd1fe04b8943dabeec0398060bd4a396333 (patch)
treeadfcc81d96d9d9548a9c4725b106707d5c64b845 /docs
parentf116ddde45a090decd84dfcf36beb5dbfa083c9c (diff)
downloadwiki-c0045cd1fe04b8943dabeec0398060bd4a396333.tar.gz
wiki-c0045cd1fe04b8943dabeec0398060bd4a396333.tar.bz2
wiki-c0045cd1fe04b8943dabeec0398060bd4a396333.zip
Update Extract-Client-Data.md
Diffstat (limited to 'docs')
-rw-r--r--docs/Extract-Client-Data.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/Extract-Client-Data.md b/docs/Extract-Client-Data.md
index 7e4b32e..08f498f 100644
--- a/docs/Extract-Client-Data.md
+++ b/docs/Extract-Client-Data.md
@@ -46,15 +46,15 @@ Type the following commands (replacing 4 with the number of threads that you wan
**Linux**
```
-cmake ../ -DCMAKE_INSTALL_PREFIX=$HOME/azeroth-server/ -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DTOOLS=1 -DSCRIPTS=1
-make -j 4
+cmake ../ -DCMAKE_INSTALL_PREFIX=$HOME/azeroth-server/ -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DTOOLS=1 -DSCRIPTS=0
+make -j 6
make install
```
**Mac**
```
-cmake ../ -DCMAKE_INSTALL_PREFIX=$HOME/azeroth-server/ -DTOOLS=1 -DSCRIPTS=1 -DMYSQL_ADD_INCLUDE_PATH=/usr/local/include -DMYSQL_LIBRARY=/usr/local/lib/libmysqlclient_r.dylib -DREADLINE_INCLUDE_DIR=/usr/local/opt/readline/include -DREADLINE_LIBRARY=/usr/local/opt/readline/lib/libreadline.dylib -DOPENSSL_INCLUDE_DIR=/usr/local/opt/openssl/include -DOPENSSL_SSL_LIBRARIES=/usr/local/opt/openssl/lib/libssl.dylib -DOPENSSL_CRYPTO_LIBRARIES=/usr/local/opt/openssl/lib/libcrypto.dylib
-make -j 4
+cmake ../ -DCMAKE_INSTALL_PREFIX=$HOME/azeroth-server/ -DTOOLS=1 -DSCRIPTS=0 -DMYSQL_ADD_INCLUDE_PATH=/usr/local/include -DMYSQL_LIBRARY=/usr/local/lib/libmysqlclient_r.dylib -DREADLINE_INCLUDE_DIR=/usr/local/opt/readline/include -DREADLINE_LIBRARY=/usr/local/opt/readline/lib/libreadline.dylib -DOPENSSL_INCLUDE_DIR=/usr/local/opt/openssl/include -DOPENSSL_SSL_LIBRARIES=/usr/local/opt/openssl/lib/libssl.dylib -DOPENSSL_CRYPTO_LIBRARIES=/usr/local/opt/openssl/lib/libcrypto.dylib
+make -j 6
make install
```
@@ -75,7 +75,7 @@ make install
```
5. Next, we need to assembly **vmaps** through the **vmap4assembler**, so type in your terminal the follows command. Same thing, you must wait until this process is completed..
```
-mkdir vmaps
+mkdir vmaps;
./vmap4assembler Buildings vmaps
```
@@ -83,7 +83,7 @@ mkdir vmaps
**NOTE: This process will take up to a few hours, depending on your computer specs.**
```
-mkdir mmaps
+mkdir mmaps;
./mmaps_generator
```