summaryrefslogtreecommitdiff
path: root/meson.build
blob: c312f2c99dc5adaea8e2ba5e1fc327362438092f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
project('simple-cam', 'c', 'cpp',
	default_options : [
		'werror=true',
		'warning_level=2',
		'cpp_std=c++17',
	])

# simple-cam.cpp is the fully commented application
src_files = files([
	'simple-cam.cpp',
])

# Point your PKG_CONFIG_PATH environment variable to the
# libcamera install path camera.pc file ($prefix/lib/pkgconfig/camera.pc)
libcamera_deps = [
      dependency('camera', required : true),
]

cpp_arguments = [ '-Wno-unused-parameter', ]

add_project_arguments(cpp_arguments, language : 'cpp')

# simple-cam executable
simple_cam = executable('simple-cam', src_files,
                        dependencies : libcamera_deps)