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

34 lines
702 B
Meson
Raw Normal View History

2018-11-08 22:04:50 +01:00
shared_library(
'chunihook',
name_prefix : '',
include_directories : inc,
implicit_include_directories : false,
2021-05-22 18:16:46 +02:00
vs_module_defs : 'chunihook.def',
c_pch : '../precompiled.h',
2018-11-08 22:04:50 +01:00
dependencies : [
capnhook.get_variable('hook_dep'),
capnhook.get_variable('hooklib_dep'),
],
link_with : [
aimeio_lib,
amex_lib,
2018-11-08 22:04:50 +01:00
board_lib,
2021-05-31 18:54:14 +02:00
chuniio_lib,
hooklib_lib,
2018-11-08 22:04:50 +01:00
jvs_lib,
platform_lib,
2018-11-08 22:04:50 +01:00
util_lib,
],
sources : [
2021-05-31 18:58:22 +02:00
'chuni-dll.c',
'chuni-dll.h',
2019-05-18 05:35:53 +02:00
'config.c',
'config.h',
'dllmain.c',
'jvs.c',
'jvs.h',
2019-05-03 21:59:23 +02:00
'slider.c',
'slider.h',
2018-11-08 22:04:50 +01:00
],
)