From cf8d745e93cd8e8185f5e9e6ee9cb97979f88fd9 Mon Sep 17 00:00:00 2001 From: Jose Luis Rivero Date: Fri, 13 Sep 2024 11:30:54 +0200 Subject: [PATCH] Do not use cmake --config for single configuration generators Signed-off-by: Jose Luis Rivero --- tutorials/23_topic_statistics.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tutorials/23_topic_statistics.md b/tutorials/23_topic_statistics.md index 37293687..ce40afa5 100644 --- a/tutorials/23_topic_statistics.md +++ b/tutorials/23_topic_statistics.md @@ -79,6 +79,9 @@ For running the example, build the binaries in the example directory: git clone https://github.com/gazebosim/gz-transport -b gz-transport14 cd gz-transport/example cmake -S . -B build +# For UNIX +cmake --build build --parallel +# For Windows cmake --build build --config release --parallel ```