[libcamera-devel,v3,2/2] README: Update build instructions

Message ID 20181126111148.6272-3-kieran.bingham@ideasonboard.com
State Accepted
Headers show
Series
  • Documentation
Related show

Commit Message

Kieran Bingham Nov. 26, 2018, 11:11 a.m. UTC
README is currently a bit too sparse, and there is no guidance on how to
use our build system.

Add some initial instructions.

Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
---
 README.md | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

Comments

Niklas Söderlund Nov. 26, 2018, 3:46 p.m. UTC | #1
Hi Kieran,

Thanks for your patch.

On 2018-11-26 11:11:48 +0000, Kieran Bingham wrote:
> README is currently a bit too sparse, and there is no guidance on how to
> use our build system.
> 
> Add some initial instructions.
> 
> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>

Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>

> ---
>  README.md | 10 +++++++++-
>  1 file changed, 9 insertions(+), 1 deletion(-)
> 
> diff --git a/README.md b/README.md
> index ca81d6491996..45ae3a41062e 100644
> --- a/README.md
> +++ b/README.md
> @@ -1 +1,9 @@
> -libcamera: A complex camera support library for Linux, Android, and ChromeOS
> +# libcamera: A complex camera support library for Linux, Android, and ChromeOS
> +
> +To build and install:
> +```
> +  meson build
> +  cd build
> +  ninja
> +  ninja install
> +```
> -- 
> 2.17.1
> 
> _______________________________________________
> libcamera-devel mailing list
> libcamera-devel@lists.libcamera.org
> https://lists.libcamera.org/listinfo/libcamera-devel

Patch

diff --git a/README.md b/README.md
index ca81d6491996..45ae3a41062e 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,9 @@ 
-libcamera: A complex camera support library for Linux, Android, and ChromeOS
+# libcamera: A complex camera support library for Linux, Android, and ChromeOS
+
+To build and install:
+```
+  meson build
+  cd build
+  ninja
+  ninja install
+```