aboutsummaryrefslogtreecommitdiff
path: root/demo/reqrep/README.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'demo/reqrep/README.adoc')
-rw-r--r--demo/reqrep/README.adoc15
1 files changed, 13 insertions, 2 deletions
diff --git a/demo/reqrep/README.adoc b/demo/reqrep/README.adoc
index b66d694c..5bc3d043 100644
--- a/demo/reqrep/README.adoc
+++ b/demo/reqrep/README.adoc
@@ -19,8 +19,19 @@ compiled on 64-bit systems.)
== Compiling
-The following is an example typical of UNIX and similar systems like
-Linux and macOS:
+CMake with ninja-build is simplest:
+
+[source, bash]
+----
+% mkdir build
+% cd build
+% cmake -G Ninja ..
+% ninja
+----
+
+Or if you prefer a traditional approach,
+the following is an example typical of UNIX and similar systems like
+Linux and macOS may appeal:
[source, bash]
----