34 lines
701 B
Meson
34 lines
701 B
Meson
|
shared_library(
|
||
|
'exvs2hook',
|
||
|
name_prefix : '',
|
||
|
include_directories : inc,
|
||
|
implicit_include_directories : false,
|
||
|
vs_module_defs : 'exvs2hook.def',
|
||
|
c_pch : '../precompiled.h',
|
||
|
dependencies : [
|
||
|
capnhook.get_variable('hook_dep'),
|
||
|
capnhook.get_variable('hooklib_dep'),
|
||
|
],
|
||
|
link_with : [
|
||
|
exvs2io_lib,
|
||
|
amcus_lib,
|
||
|
platform_lib,
|
||
|
util_lib,
|
||
|
hooklib_lib,
|
||
|
gfxhook_lib,
|
||
|
jvs_lib,
|
||
|
board_lib
|
||
|
],
|
||
|
sources : [
|
||
|
'dllmain.c',
|
||
|
'config.c',
|
||
|
'config.h',
|
||
|
'exvs2-dll.c',
|
||
|
'exvs2-dll.h',
|
||
|
'jvs.c',
|
||
|
'jvs.h',
|
||
|
'bngrw.c',
|
||
|
'bngrw.h',
|
||
|
],
|
||
|
)
|