From patchwork Mon Nov 26 11:11:48 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 13 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 5497A60B0B for ; Mon, 26 Nov 2018 12:11:53 +0100 (CET) Received: from localhost.localdomain (cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id E824AE03; Mon, 26 Nov 2018 12:11:52 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1543230713; bh=i9jx0KPI2Y3a2vEoE1Vel5srS7AecU9OeLOdBcmzDwc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Dvriq/mnJiEtpDezkL09yoqfG5wJE6nEUIplew1E67hd2iYOcnaGy07v4u4pN2OiJ csDjnlFF9XLcNhAyVxNCAe1KD3kvAuHWbI+Q1CRegvGXxVZdjmoyNUjyM/LIQC8LBy 9tmIf5xmBgr2kWULdtYB7KLzXAcMRvAxUIdyXXKI= From: Kieran Bingham To: LibCamera Devel Date: Mon, 26 Nov 2018 11:11:48 +0000 Message-Id: <20181126111148.6272-3-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20181126111148.6272-1-kieran.bingham@ideasonboard.com> References: <20181126111148.6272-1-kieran.bingham@ideasonboard.com> Subject: [libcamera-devel] [PATCH v3 2/2] README: Update build instructions X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Nov 2018 11:11:53 -0000 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 Reviewed-by: Niklas Söderlund --- 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 +```