magicstore/meson.build
King_DuckZ 2f4587e40a First import
Program can read from /dev/video0 and dump the frame to the disk
2021-10-31 16:43:18 +01:00

16 lines
339 B
Meson

project('magicstore', 'cpp',
version: '0.1.0',
default_options: ['buildtype=debug', 'cpp_std=gnu++17', 'c_std=c11', 'build_testing=true'],
)
libopencv_dep = dependency('opencv4')
executable(meson.project_name(),
'src/main.cpp',
'src/camera.cpp',
'src/file_handle.cpp',
dependencies: [
libopencv_dep,
],
install: true,
)