From ec59b49c3241f47838c54dec6ade992bf55234fd Mon Sep 17 00:00:00 2001 From: haxala1r Date: Thu, 2 Oct 2025 18:20:04 +0300 Subject: [PATCH] Update README.md to mention new library dependancy --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 01a4942..3480c0d 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,9 @@ All you need is: - CMake - An appropriate C++ compiler +- The [Catch2](https://github.com/catchorg/Catch2) library v3 or higher installed on your system -I use cmake for the build system. I prefer to build out-of-tree, -here's how to build if you've never used cmake: +Once you have these, you can build with: ```bash cd build @@ -24,7 +24,7 @@ make ``` This will build two executables, `main` and `test`. `test` runs all tests -on the compiler itself +on the compiler itself. ## Development