segatools/util/meson.build
Tau ba8b8e32fc util/async.c: Add async IO worker thread
Need this for IO4 USB emulation, might break it out and upstream it
to Capnhook at some point as well.
2019-03-04 16:47:32 -05:00

31 lines
589 B
Meson

util_lib = static_library(
'util',
include_directories : inc,
implicit_include_directories : false,
c_pch : [
'../precompiled.c',
'../precompiled.h',
],
dependencies : [
capnhook.get_variable('hook_dep'),
],
sources : [
'async.c',
'async.h',
'clock.c',
'clock.h',
'crc.c',
'crc.h',
'dprintf.c',
'dprintf.h',
'dump.c',
'dump.h',
'gfx.c',
'gfx.h',
'setupapi.c',
'setupapi.h',
'spike.c',
'spike.h',
],
)