summaryrefslogtreecommitdiff
path: root/meson.build
blob: d102f3d825c2a311b501ab22d2025dab5139362f (plain)
1
2
3
4
5
6
7
8
9
project('camlet',
	'c',
	default_options: [
		'warning_level=4',
	]
)

libv4l2 = dependency('libv4l2')
executable('camlet', 'main.c', dependencies: [libv4l2], c_args: ['-Wno-unused-function'])