- 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>
### Local Build (Ubuntu)
```bash
meson setup builddir -Dlibaurum_only=true
-meson compile -C builddir/
+ninja -C builddir/
```