From 88c35c90847c9cdd7d0cbee80f45ed32f1811189 Mon Sep 17 00:00:00 2001 From: Kieran Bingham Date: Mon, 26 Nov 2018 10:32:13 +0000 Subject: lib: Include library in the install target MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The shared library build target does not install the library when 'ninja install' is executed. Flag it as an installable item. Reviewed-by: Niklas Söderlund Reviewed-by: Laurent Pinchart Signed-off-by: Kieran Bingham --- lib/meson.build | 1 + 1 file changed, 1 insertion(+) (limited to 'lib') diff --git a/lib/meson.build b/lib/meson.build index 37876cee..eee99b75 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -2,4 +2,5 @@ sources = ['main.cpp'] libcamera = shared_library('camera', sources, + install : true, include_directories : inc) -- cgit v1.2.1