blob: 4b3d528c8932436f7298232eb0dcad9df8796897 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
project('libcamera - supporting complex camera pipelines', 'c', 'cpp',
version : '0.1',
license : 'LGPL 2.1+')
inc = include_directories('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')
|