summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorgiyX <34867130+GeorgiyX@users.noreply.github.com>2022-10-10 13:31:24 +0300
committerGitHub <noreply@github.com>2022-10-10 12:31:24 +0200
commit687a9b326e445d5d7a056d64f765148be921358f (patch)
treeb54fed391b964b610cd50dd0428070bb19af6df7
parentaea04fbf2f7458922801b3f5dbbef19c6d9aea43 (diff)
downloadwiki-687a9b326e445d5d7a056d64f765148be921358f.tar.gz
wiki-687a9b326e445d5d7a056d64f765148be921358f.tar.bz2
wiki-687a9b326e445d5d7a056d64f765148be921358f.zip
docs: Changed cmake TOOLS parameter to actual TOOLS_BUILD (#821)
-rw-r--r--docs/es/linux-core-installation.md2
-rw-r--r--docs/linux-core-installation.md2
-rw-r--r--docs/macos-core-installation.md2
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/es/linux-core-installation.md b/docs/es/linux-core-installation.md
index 53d3c71..ab7edb3 100644
--- a/docs/es/linux-core-installation.md
+++ b/docs/es/linux-core-installation.md
@@ -65,7 +65,7 @@ echo $HOME
**Note**: in case you use a non-default package for `clang`, you need to replace it accordingly. For example, if you installed `clang-6.0` then you have to replace `clang` with `clang-6.0` and `clang++` with `clang++-6.0`
```sh
-cmake ../ -DCMAKE_INSTALL_PREFIX=$HOME/azeroth-server/ -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DWITH_WARNINGS=1 -DTOOLS=0 -DSCRIPTS=static
+cmake ../ -DCMAKE_INSTALL_PREFIX=$HOME/azeroth-server/ -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DWITH_WARNINGS=1 -DTOOLS_BUILD=all -DSCRIPTS=static
```
To know the amount of cores available.
diff --git a/docs/linux-core-installation.md b/docs/linux-core-installation.md
index 8204f42..0a766f8 100644
--- a/docs/linux-core-installation.md
+++ b/docs/linux-core-installation.md
@@ -65,7 +65,7 @@ echo $HOME
**Note**: in case you use a non-default package for `clang`, you need to replace it accordingly. For example, if you installed `clang-6.0` then you have to replace `clang` with `clang-6.0` and `clang++` with `clang++-6.0`
```sh
-cmake ../ -DCMAKE_INSTALL_PREFIX=$HOME/azeroth-server/ -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DWITH_WARNINGS=1 -DTOOLS=0 -DSCRIPTS=static -DMODULES=static
+cmake ../ -DCMAKE_INSTALL_PREFIX=$HOME/azeroth-server/ -DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++ -DWITH_WARNINGS=1 -DTOOLS_BUILD=all -DSCRIPTS=static -DMODULES=static
```
To know the amount of cores available.
diff --git a/docs/macos-core-installation.md b/docs/macos-core-installation.md
index 2530cc9..db1e49d 100644
--- a/docs/macos-core-installation.md
+++ b/docs/macos-core-installation.md
@@ -62,7 +62,7 @@ At this point, you must be in your "build/" directory.
export OPENSSL_ROOT_DIR=$(brew --prefix openssl@1.1)
cmake ../ \
-DCMAKE_INSTALL_PREFIX=$HOME/azeroth-server/ \
--DTOOLS=0 \
+-DTOOLS_BUILD=all \
-DSCRIPTS=static \
-DMYSQL_ADD_INCLUDE_PATH=/usr/local/include \
-DMYSQL_LIBRARY=/usr/local/lib/libmysqlclient.dylib \