htpipe/meson.build
2026-09-09 04:17:48 +02:00

17 lines
281 B
Meson

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)