From: Seoyeon Date: Thu, 6 Feb 2025 05:14:08 +0000 (+0900) Subject: Update README file for Ubuntu local build X-Git-Tag: accepted/tizen/unified/20250221.111437~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8a658dabb1ecd1f54f58483e53eccb7641b4e52f;p=platform%2Fcore%2Fuifw%2Faurum.git Update README file for Ubuntu local build - There's an error message using `meson compile -C builddir/` command ``` usage: meson [-h] {setup,configure,dist,install,introspect,init,test,wrap,subprojects,help,rewrite} ... meson: error: unrecognized arguments: -C builddir/ ``` - Update the README.md file for the command to use `ninja` build system with `-C` option. Change-Id: Ia0930fc96ece568fbc2fd329e650594c63c08416 Signed-off-by: Seoyeon --- diff --git a/README.md b/README.md index 83e3480..d78ba79 100644 --- a/README.md +++ b/README.md @@ -30,5 +30,5 @@ Please refer [grpc](https://grpc.io/) and [proto buffers](https://developers.goo ### Local Build (Ubuntu) ```bash meson setup builddir -Dlibaurum_only=true -meson compile -C builddir/ +ninja -C builddir/ ```