forked from Hay1tsme/segatools
Matt Bilker
20d5d480fb
- Unity loads plugin DLLs and Mono dynamically. - Ongeki uses Criware for videos so hook the Criware plugin DLL so the path hooks load the videos from the hooked paths.
31 lines
633 B
Meson
31 lines
633 B
Meson
shared_library(
|
|
'mu3hook',
|
|
name_prefix : '',
|
|
include_directories : inc,
|
|
implicit_include_directories : false,
|
|
vs_module_defs : 'mu3hook.def',
|
|
c_pch : '../precompiled.h',
|
|
dependencies : [
|
|
capnhook.get_variable('hook_dep'),
|
|
capnhook.get_variable('hooklib_dep'),
|
|
xinput_lib,
|
|
],
|
|
link_with : [
|
|
aimeio_dll,
|
|
board_lib,
|
|
hooklib_lib,
|
|
mu3io_dll,
|
|
platform_lib,
|
|
util_lib,
|
|
],
|
|
sources : [
|
|
'config.c',
|
|
'config.h',
|
|
'dllmain.c',
|
|
'io4.c',
|
|
'io4.h',
|
|
'unity.h',
|
|
'unity.c',
|
|
],
|
|
)
|