1
0
mirror of synced 2024-11-24 05:50:12 +01:00
bananatools/util/meson.build
2023-04-13 02:30:39 -04:00

28 lines
542 B
Meson

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',
'hexstr.c',
'hexstr.h',
],
)