aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorLibravatar buttercat1791 <mjjurkoic@gmail.com>2024-04-28 12:39:35 -0500
committerLibravatar buttercat1791 <mjjurkoic@gmail.com>2024-04-28 12:39:35 -0500
commit2f5c62d0ef2c31366fd2295184aa97e6f07e4ddd (patch)
tree3c70a0dd39ade347aabcc35429af8b71864c6a47 /README.md
parent047a45bd2e3bda3456c1365115d67847d43dd9f1 (diff)
README instructions for testing
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/README.md b/README.md
index b38e83f..de4d3ad 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ This project uses CMake as its build system, and vcpkg as its dependency manager
- C++17 compiler
- vcpkg
-### Build Targets
+### Building and Testing
The SDK aims to support Linux, Windows, and macOS build targets. CMake presets are provided for each target.
@@ -24,3 +24,9 @@ To build the SDK on Linux, run the following commands from the project root:
cmake --preset=linux .
cmake --build ./build/linux
```
+
+To run unit tests, use the following command:
+
+```bash
+ctest ./build/linux
+```