.
This commit is contained in:
commit
2ed9805b67
9 changed files with 459 additions and 0 deletions
17
meson.build
Normal file
17
meson.build
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue