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