From 386a782f33516340b7040d0034e00847b4c1006a Mon Sep 17 00:00:00 2001 From: lennartvoelz Date: Mon, 24 Aug 2026 09:11:26 +0200 Subject: [PATCH] Fix ctest command in README to point at build/test enable_testing() is only called in test/CMakeLists.txt, not the top-level CMakeLists.txt, so ctest --test-dir build finds no tests when run from the repo root. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c6f6272ef..b002c0dd9 100644 --- a/README.md +++ b/README.md @@ -260,7 +260,7 @@ cmake -S . -B build \ -DMATX_BUILD_EXAMPLES=ON \ -DMATX_BUILD_TESTS=ON cmake --build build -j -ctest --test-dir build +ctest --test-dir build/test ``` MatX currently fully supports Linux with alpha support for Windows. A C++20 build environment is required. GPU builds require the CUDA Toolkit and a supported host compiler; consult the [build guide](https://nvidia.github.io/MatX/build.html) for exact current versions, optional backends, offline setup, and CPU support.