aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index e9189dc..f5a9d3c 100644
--- a/README.md
+++ b/README.md
@@ -33,11 +33,12 @@ The SDK aims to support Linux, Windows, and macOS build targets. It currently s
To build the SDK on Linux, run the following commands from the project root:
```bash
-cmake --build --preset linux
+cmake --build --preset="linux"
```
-To run unit tests, use the following command:
+To run unit tests, use the following commands:
```bash
-ctest --preset linux
+cmake --build --preset="linux tests"
+ctest --preset="linux"
```