Add carolhook for Wonderland Wars

This commit is contained in:
2022-12-10 22:01:52 -05:00
committed by Hay1tsme
parent 04ca905467
commit 376dad0bc8
29 changed files with 1296 additions and 1 deletions

38
carolhook/meson.build Normal file
View File

@ -0,0 +1,38 @@
shared_library(
'carolhook',
name_prefix : '',
include_directories : inc,
implicit_include_directories : false,
vs_module_defs : 'carolhook.def',
c_pch : '../precompiled.h',
dependencies : [
capnhook.get_variable('hook_dep'),
capnhook.get_variable('hooklib_dep'),
],
link_with : [
aimeio_lib,
amex_lib,
board_lib,
carolio_lib,
hooklib_lib,
jvs_lib,
platform_lib,
util_lib,
gfxhook_lib,
],
sources : [
'config.c',
'config.h',
'carol-dll.c',
'carol-dll.h',
'dllmain.c',
'jvs.c',
'jvs.h',
'touch.c',
'touch.h',
'controlbd.c',
'controlbd.h',
'serial.c',
'serial.h',
],
)