This commit is contained in:
kento2 2026-09-09 04:16:40 +02:00
commit 2ed9805b67
9 changed files with 459 additions and 0 deletions

17
meson.build Normal file
View file

@ -0,0 +1,17 @@
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)