Update README file for Ubuntu local build 34/319234/1
authorSeoyeon <seoyeon2.kim@samsung.com>
Thu, 6 Feb 2025 05:14:08 +0000 (14:14 +0900)
committerSeoyeon <seoyeon2.kim@samsung.com>
Thu, 6 Feb 2025 05:16:59 +0000 (14:16 +0900)
- 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 <seoyeon2.kim@samsung.com>
README.md

index 83e348012cd182deacd9c72ee017136b2f429b0a..d78ba79b43c27883fbfc670540ead72a5c433bc2 100644 (file)
--- 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/
 ```