project( 'htpipe', 'c', default_options: [ 'c_std=c99', 'warning_level=2', ], ) cc = meson.get_compiler('c') deps = [ cc.find_library('libowfat'), ] executable('htpipe', files( './htpipe.c', './minimal_multipart_parser.c', ), dependencies:deps, install:true)