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