From d359eae0831f94048729f99e6efe49e000330683 Mon Sep 17 00:00:00 2001
From: Nicolas Werner <nicolas.werner@hotmail.de>
Date: Fri, 15 May 2020 00:43:04 +0200
Subject: [PATCH] Use standard cmake args instead of old -H

---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 8273997aa..9015bdcf4 100644
--- a/README.md
+++ b/README.md
@@ -36,7 +36,7 @@ Below is an example which will build the library along with the tests & examples
 #### Linux 
 
 ```bash
-cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Debug
+cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Debug
 cmake --build build
 ```
 
@@ -45,7 +45,7 @@ cmake --build build
 You will need to pass as argument (`-DOPENSSL_ROOT_DIR`) the installation root of openssl. 
 
 ```bash
-cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Debug -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl
+cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Debug -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl
 cmake --build build
 ```
 
-- 
GitLab