From patchwork Wed Dec 19 09:33:56 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacopo Mondi X-Patchwork-Id: 60 Return-Path: Received: from relay9-d.mail.gandi.net (relay9-d.mail.gandi.net [217.70.183.199]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 083F760B23 for ; Wed, 19 Dec 2018 10:34:04 +0100 (CET) X-Originating-IP: 2.224.242.101 Received: from w540.lan (2-224-242-101.ip172.fastwebnet.it [2.224.242.101]) (Authenticated sender: jacopo@jmondi.org) by relay9-d.mail.gandi.net (Postfix) with ESMTPSA id 9433BFF802; Wed, 19 Dec 2018 09:34:03 +0000 (UTC) From: Jacopo Mondi To: libcamera-devel@lists.libcamera.org Date: Wed, 19 Dec 2018 10:33:56 +0100 Message-Id: <1545212036-22541-3-git-send-email-jacopo@jmondi.org> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1545212036-22541-1-git-send-email-jacopo@jmondi.org> References: <1545212036-22541-1-git-send-email-jacopo@jmondi.org> Subject: [libcamera-devel] [PATCH 2/2] build: Define library private include path 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: Wed, 19 Dec 2018 09:34:04 -0000 Separate declaration of library internal inclusion path. This will be used by tests, developed outside of library code, that need to include parts of the library internal APIs and can re-use the here defined variable. Reviewed-by: Laurent Pinchart Signed-off-by: Jacopo Mondi --- src/libcamera/meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/libcamera/meson.build b/src/libcamera/meson.build index 0c44b5a..f632eb5 100644 --- a/src/libcamera/meson.build +++ b/src/libcamera/meson.build @@ -8,9 +8,11 @@ libcamera_headers = files([ 'include/utils.h', ]) +libcamera_internal_includes = include_directories('include') + includes = [ libcamera_includes, - include_directories('include'), + libcamera_internal_includes, ] libcamera = shared_library('camera',