The include directory was defined but not installed. Add it to the meson build structure to incorporate it as part of the library install. To facilitate the same include paths in our internal includes, update the structure for headers to match the install structure. Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
17 lines
462 B
Meson
17 lines
462 B
Meson
project('libcamera - supporting complex camera pipelines', 'c', 'cpp',
|
|
version : '0.1',
|
|
license : 'LGPL 2.1+')
|
|
|
|
inc = include_directories('include')
|
|
|
|
subdir('include')
|
|
subdir('lib')
|
|
subdir('test')
|
|
subdir('utils')
|
|
|
|
pkg_mod = import('pkgconfig')
|
|
pkg_mod.generate(libraries : libcamera,
|
|
version : '1.0',
|
|
name : 'libcamera',
|
|
filebase : 'camera',
|
|
description : 'Complex Camera Support Library')
|