summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2018-10-24 10:34:27 +0100
committerKieran Bingham <kieran.bingham@ideasonboard.com>2018-10-24 12:22:19 +0100
commit708d3c9fc07e8b27770e365696d8867599b3ae93 (patch)
tree441bf83273fd718d43d6624ac0492eea60e20f17 /test
parent87ba17ba41f2c540efe9ecd46379477282852642 (diff)
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 <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'test')
-rw-r--r--test/init.cpp9
-rw-r--r--test/meson.build3
2 files changed, 12 insertions, 0 deletions
diff --git a/test/init.cpp b/test/init.cpp
new file mode 100644
index 00000000..182728d3
--- /dev/null
+++ b/test/init.cpp
@@ -0,0 +1,9 @@
+#include <libcamera.h>
+
+int main(void)
+{
+ libcamera l = libcamera();
+ l.init_lib();
+
+ return 0;
+}
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)