summaryrefslogtreecommitdiff
path: root/meson.build
blob: d1e186adb356cba6b05aacfa7a7df3b39325e356 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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')