From 28df5f5886612e5f73af962cf8528929452f3c9e Mon Sep 17 00:00:00 2001 From: Wouter Beek Date: Fri, 12 Aug 2022 21:54:48 +0200 Subject: [PATCH] DOC: Fixed typo's in documented CMake variables for building. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 52832695..0a933586 100644 --- a/README.md +++ b/README.md @@ -92,19 +92,19 @@ $ cmake .. -DCMAKE_BUILD_TYPE=Release (or Debug) ``` To enable test cases and examples under build/test directory: ```bash -$ cmake .. -DNW_GRAPH_BUILD_TESTS=ON (or OFF) +$ cmake .. -DNWGRAPH_BUILD_TESTS=ON (or OFF) ``` To generate applications under build/bench/ directory: ```bash -$ cmake .. -DNW_GRAPH_BUILD_BENCH=ON (or OFF) +$ cmake .. -DNWGRAPH_BUILD_BENCH=ON (or OFF) ``` To generate abstraction penalty under build/abp/ directory: ```bash -$ cmake .. -DNW_GRAPH_BUILD_APBS=OFF (or ON) +$ cmake .. -DNWGRAPH_BUILD_APBS=OFF (or ON) ``` To generate tools under build/example/ directory: ```bash -$ cmake .. -DNW_GRAPH_BUILD_EXAMPLES=OFF (or ON) +$ cmake .. -DNWGRAPH_BUILD_EXAMPLES=OFF (or ON) ``` If cmake is not able to find TBB in its expected places, you may get an error during the cmake step. In this case, you need to set the `TBBROOT` environment variable to the location where oneTBB was installed. For example: