This commit is contained in:
kento2 2026-09-04 19:59:24 +02:00
commit 55385f8857
69 changed files with 1125 additions and 0 deletions

23
meson.build Normal file
View file

@ -0,0 +1,23 @@
project(
'pkg_add', 'c',
default_options: [
'c_std=c99',
'warning_level=2',
],
)
cc = meson.get_compiler('c')
deps = [
cc.find_library('libowfat'),
dependency('libtoml'),
]
executable('pkg_add', files(
'pkg_add.c',
'strff/strff_open.c',
'strff/strff_close.c',
'strff/strff_seek.c',
'strff/strff_read.c',
'strff/strff_read_sa.c',
'strff/strff_get.c',
), dependencies:deps)