summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/unit-testing.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/unit-testing.md b/docs/unit-testing.md
index ef28ada..f889213 100644
--- a/docs/unit-testing.md
+++ b/docs/unit-testing.md
@@ -2,7 +2,7 @@
## How to compile and run the AC unit tests
-1. You have to compile your core by passing `-DUNIT_TESTS=1` in your `cmake` command.
+1. You have to compile your core by passing `-DBUILD_TESTING=1` in your `cmake` command.
For example:
@@ -10,7 +10,7 @@ For example:
cd azerothcore
mkdir build
cd build
-cmake ../ -DWITH_WARNINGS=1 -DTOOLS=0 -DSCRIPTS=1 -DUNIT_TESTS=1
+cmake ../ -DWITH_WARNINGS=1 -DTOOLS=0 -DSCRIPTS=1 -DBUILD_TESTING=1
make install -j 6
```