From bff663c4071679eb5666bd9bb23d03c921b8195a Mon Sep 17 00:00:00 2001 From: NeroBurner Date: Wed, 23 Oct 2019 20:36:11 +0000 Subject: [PATCH] README: update cmake commands using cmake --build is more cross platform and independent of the used generator/compiler --- README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c7d8ca0..d2775fe 100644 --- a/README.md +++ b/README.md @@ -65,13 +65,11 @@ brew install openssl boost Compile with a C++11 compliant compiler: ```sh -mkdir build -cd build -cmake .. -make -cd .. +cmake -H. -Bbuild +cmake --build build ``` + ### HTTP Run the server and client examples: `./build/http_examples`