You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
312 B

project('miniwebcam', 'cpp', default_options: [
'cpp_std=gnu++14'
])
miniwebcam_src = [
'main.cc',
'configuration.cc',
'webserver.cc'
]
miniwebcam_headers = [
'configuration.h',
'miniwebcam.h'
]
executable('miniwebcam',
install : true,
sources: miniwebcam_src,
extra_files: miniwebcam_headers
)