diff options
author | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2018-10-24 10:34:27 +0100 |
---|---|---|
committer | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2018-10-24 12:22:19 +0100 |
commit | 708d3c9fc07e8b27770e365696d8867599b3ae93 (patch) | |
tree | 441bf83273fd718d43d6624ac0492eea60e20f17 /meson.build | |
parent | 87ba17ba41f2c540efe9ecd46379477282852642 (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 'meson.build')
-rw-r--r-- | meson.build | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meson.build b/meson.build new file mode 100644 index 00000000..d1e186ad --- /dev/null +++ b/meson.build @@ -0,0 +1,15 @@ +project('libcamera - supporting complex camera pipelines', 'cpp', + version : '0.1', + license : 'LGPL 2.1+') + +inc = include_directories('include') + +subdir('lib') +subdir('test') + +pkg_mod = import('pkgconfig') +pkg_mod.generate(libraries : libcamera, + version : '1.0', + name : 'libcamera', + filebase : 'camera', + description : 'Complex Camera Support Library') |