1
0
mirror of https://gitea.tendokyu.moe/Hay1tsme/segatools.git synced 2025-02-21 12:39:37 +01:00
segatools-hay1tsme/jvs/meson.build

22 lines
436 B
Meson
Raw Normal View History

2018-11-08 14:17:06 -05:00
jvs_lib = static_library(
'jvs',
include_directories : inc,
implicit_include_directories : false,
2018-11-23 18:17:02 -05:00
c_pch : [
'../precompiled.c',
'../precompiled.h',
],
2018-11-08 14:17:06 -05:00
dependencies : [
capnhook.get_variable('hook_dep'),
],
sources : [
2018-11-08 14:17:59 -05:00
'jvs-bus.c',
'jvs-bus.h',
'jvs-cmd.h',
2018-11-08 14:18:34 -05:00
'jvs-frame.c',
'jvs-frame.h',
'jvs-util.c',
'jvs-util.h',
2018-11-08 14:17:06 -05:00
],
)