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.

26 lines
335 B

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