1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2024-11-11 23:17:08 +01:00
segatools-dniel97/util/meson.build

24 lines
468 B
Meson
Raw Normal View History

2018-11-07 22:37:23 +01:00
util_lib = static_library(
'util',
include_directories : inc,
implicit_include_directories : false,
c_pch : '../precompiled.h',
2018-11-07 22:37:23 +01:00
dependencies : [
capnhook.get_variable('hook_dep'),
],
sources : [
'async.c',
'async.h',
'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',
'dump.c',
'dump.h',
'str.c',
'str.h',
2018-11-07 22:37:23 +01:00
],
)