From b6d3dc44194c62e6baab8315266c0c745f61036b Mon Sep 17 00:00:00 2001 From: Novo Date: Wed, 3 Sep 2025 09:49:21 +0200 Subject: [PATCH] doc: correct the build instructions for example The make target to build the example executable is "mpexample" not "example". This commit uses "mpexamples" in the doc, because that builds the calculator, printer and example executables. --- doc/usage.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/usage.md b/doc/usage.md index 1421542d..22784ce1 100644 --- a/doc/usage.md +++ b/doc/usage.md @@ -19,6 +19,9 @@ A simple interface description can be found at [test/mp/test/foo.capnp](../test/ A more complete example can be found in [example](../example/) and run with: ```sh -make -C build example -build/example/mpexample +mkdir build +cd build +cmake .. +make mpexamples +example/mpexample ```