From 51ff27fe03f022dc57dad6d511f90fc517faffa0 Mon Sep 17 00:00:00 2001 From: "sewon.oh" Date: Fri, 16 Nov 2018 18:40:20 +0900 Subject: [PATCH] [DOC] write how to build with meson write how to install and build with meson. Signed-off-by: sewon.oh --- Documentation/getting-started.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/Documentation/getting-started.md b/Documentation/getting-started.md index 72c1982..b629076 100644 --- a/Documentation/getting-started.md +++ b/Documentation/getting-started.md @@ -48,6 +48,26 @@ $ sudo make install if installing NNstreamer plugin libraries into ```%{_libdir}```. +**Approach 3.** Build with meson +* https://mesonbuild.com/Getting-meson.html + +install the required packages. + +```bash +$ sudo apt install libgtk-3-dev ninja-build +$ git clone https://github.com/mesonbuild/meson.git +$ cd meson +$ git checkout 0.48 +$ cd .. +``` + +Build at the git repo root directory. +```bash +$ meson/meson.py build +$ cd build +$ ninja +``` + ### Clean Build based on Platform ##### Tizen -- 2.7.4