forked from Dniel97/segatools
ba8b8e32fc
Need this for IO4 USB emulation, might break it out and upstream it to Capnhook at some point as well.
31 lines
589 B
Meson
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',
|
|
],
|
|
)
|