2018-11-07 16:37:23 -05:00
|
|
|
util_lib = static_library(
|
|
|
|
'util',
|
|
|
|
include_directories : inc,
|
|
|
|
implicit_include_directories : false,
|
2019-05-01 21:17:30 -04:00
|
|
|
c_pch : '../precompiled.h',
|
2018-11-07 16:37:23 -05:00
|
|
|
dependencies : [
|
|
|
|
capnhook.get_variable('hook_dep'),
|
|
|
|
],
|
|
|
|
sources : [
|
2019-03-03 19:58:11 -05:00
|
|
|
'async.c',
|
|
|
|
'async.h',
|
2018-11-08 10:20:21 -05:00
|
|
|
'crc.c',
|
|
|
|
'crc.h',
|
2021-05-23 11:39:33 -04:00
|
|
|
'dll-bind.c',
|
|
|
|
'dll-bind.h',
|
2018-11-07 16:38:24 -05:00
|
|
|
'dprintf.c',
|
|
|
|
'dprintf.h',
|
2018-11-08 10:22:26 -05:00
|
|
|
'dump.c',
|
|
|
|
'dump.h',
|
2021-10-25 09:30:34 +00:00
|
|
|
'lib.c',
|
|
|
|
'lib.h',
|
2019-05-13 16:48:34 -04:00
|
|
|
'str.c',
|
|
|
|
'str.h',
|
2018-11-07 16:37:23 -05:00
|
|
|
],
|
|
|
|
)
|