Add libcamera Android Camera HALv3 implementation. The initial camera HAL implementation supports the LIMITED hardware level and uses statically defined metadata and camera characteristics. Add a build option named 'android' and adjust the build system to selectively compile the Android camera HAL and link it against the required Android libraries. Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
12 lines
353 B
Meson
12 lines
353 B
Meson
option('android',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Compile libcamera with Android Camera3 HAL interface')
|
|
|
|
option('documentation',
|
|
type : 'boolean',
|
|
description : 'Generate the project documentation')
|
|
|
|
option('tests',
|
|
type : 'boolean',
|
|
description: 'Compile and include the tests')
|