From a200f212fd0c9479173cb63d17bd4a764bb86a78 Mon Sep 17 00:00:00 2001 From: Jasmine Tang Date: Wed, 15 Nov 2023 07:16:26 -0800 Subject: [PATCH] Documentation: Fix readme.md to reflect testing script (#371) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2c69b7704..30e2008c8 100755 --- a/README.md +++ b/README.md @@ -195,7 +195,7 @@ From the base directory: ```bash mkdir -p build # Create a directory to hold the build output cd build # Enter the build folder -cmake .. # Generate native build scripts for GoogleTest +cmake -DTEST=ON .. # Generate native build scripts for GoogleTest, make # Compile ``` @@ -239,7 +239,7 @@ From the base directory: ```bash mkdir -p build # Create a directory to hold the build output cd build # Enter the build folder -cmake -DBENCHMARK=ON .. # Generate native build scripts for GoogleTest +cmake -DBENCHMARK=ON .. # Generate native build scripts for Google Benchmark make # Compile ```