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>
15 lines
423 B
Meson
15 lines
423 B
Meson
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')
|