* Make SDB code SPDX compliant * Use some RzUtil functions inside SDB util: compile natively without any extra dependency
51 lines
748 B
Meson
51 lines
748 B
Meson
libsdb_sources = files(
|
|
'array.c',
|
|
'set.c',
|
|
'base64.c',
|
|
'buffer.c',
|
|
'cdb.c',
|
|
'cdb_make.c',
|
|
'diff.c',
|
|
'disk.c',
|
|
'fmt.c',
|
|
'ht_uu.c',
|
|
'ht_pp.c',
|
|
'ht_up.c',
|
|
'ht_pu.c',
|
|
'journal.c',
|
|
'json.c',
|
|
#'json/api.c',
|
|
#'json/indent.c',
|
|
#'json/js0n.c',
|
|
#'json/path.c',
|
|
#'json/rangstr.c',
|
|
'lock.c',
|
|
'ls.c',
|
|
'match.c',
|
|
'ns.c',
|
|
'num.c',
|
|
'query.c',
|
|
'sdb.c',
|
|
'sdbht.c',
|
|
'util.c',
|
|
'text.c'
|
|
)
|
|
|
|
libsdb_inc = [platform_inc, include_directories(['..', '.'])]
|
|
|
|
include_files = files(
|
|
'buffer.h',
|
|
'cdb.h',
|
|
'cdb_make.h',
|
|
'ht_inc.h',
|
|
'ht_pp.h',
|
|
'ht_up.h',
|
|
'ht_uu.h',
|
|
'ht_pu.h',
|
|
'ls.h',
|
|
'sdb.h',
|
|
'sdbht.h',
|
|
'set.h',
|
|
)
|
|
|
|
install_headers(include_files, install_dir: join_paths(rizin_incdir, 'sdb'))
|