From 708d3c9fc07e8b27770e365696d8867599b3ae93 Mon Sep 17 00:00:00 2001 From: Kieran Bingham Date: Wed, 24 Oct 2018 10:34:27 +0100 Subject: build: Provide initial meson infrastructure Define the starting points for the libcamera build using meson and ninja build components. An initial 'dummy' library class is created, and a test binary links against the shared library calling it's init_lib() function. Signed-off-by: Kieran Bingham --- test/meson.build | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test/meson.build (limited to 'test/meson.build') diff --git a/test/meson.build b/test/meson.build new file mode 100644 index 00000000..faff4b2d --- /dev/null +++ b/test/meson.build @@ -0,0 +1,3 @@ +test_init = executable('test_init', 'init.cpp', + link_with : libcamera, + include_directories : inc) -- cgit v1.2.1