segatools/cardhook/meson.build
Tau 55c68c8094 cardhook: Wire up aimeReaderHost hook
This is an external AiMe driver process that is only used by
Chunithm AFAIK. The wiring can be easily re-used for other games.
2018-11-20 20:33:17 -05:00

21 lines
440 B
Meson

shared_library(
'cardhook',
name_prefix : '',
include_directories: inc,
implicit_include_directories : false,
vs_module_defs : 'cardhook.def',
c_pch : '../precompiled.h',
dependencies : [
capnhook.get_variable('hook_dep'),
capnhook.get_variable('hooklib_dep'),
],
link_with : [
board_lib,
util_lib,
],
sources : [
'_com12.c',
'dllmain.c',
],
)