From 43679deff0996ee7c22979c813d039fe0f922055 Mon Sep 17 00:00:00 2001 From: Timo Koch Date: Thu, 31 Aug 2023 14:49:38 +0200 Subject: [PATCH] [readme] Fix typo in installation instructions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 09f2d1f..491a882 100644 --- a/README.md +++ b/README.md @@ -247,7 +247,7 @@ An optional CMake installation is supported, if you have CMake with at least v3. ```bash mkdir build && cd build cmake .. -DCMAKE_INSTALL_PREFIX='intended installation directory' -DCMAKE_PREFIX_PATH='path where the installation of Eigen3 can be found' -DBUILD_TESTS=TRUE -make all && make tests && make install +make all && make test && make install ``` By installing **Spectra** in this way, you also create a CMake target `Spectra::Spectra` that can be used in subsequent build procedures for other programs.