bananatools/util/meson.build

28 lines
542 B
Meson
Raw Normal View History

2023-01-03 04:35:53 +00:00
util_lib = static_library(
'util',
include_directories : inc,
implicit_include_directories : false,
c_pch : '../precompiled.h',
dependencies : [
capnhook.get_variable('hook_dep'),
],
sources : [
'async.c',
'async.h',
'crc.c',
'crc.h',
'dll-bind.c',
'dll-bind.h',
'dprintf.c',
'dprintf.h',
'dump.c',
'dump.h',
'lib.c',
'lib.h',
'str.c',
'str.h',
2023-04-13 06:30:39 +00:00
'hexstr.c',
'hexstr.h',
2023-01-03 04:35:53 +00:00
],
)