forked from Dniel97/segatools
b550efd4a9
Initial D Zero has some incomplete built-in PC input support, we need to disable it so that it does not interfere with our JVS emulation.
18 lines
352 B
Meson
18 lines
352 B
Meson
shared_library(
|
|
'zinput',
|
|
name_prefix : '',
|
|
include_directories : inc,
|
|
implicit_include_directories : false,
|
|
vs_module_defs : 'zinput.def',
|
|
c_pch : '../precompiled.h',
|
|
dependencies : [
|
|
capnhook.get_variable('hook_dep'),
|
|
],
|
|
link_with : [
|
|
util_lib,
|
|
],
|
|
sources : [
|
|
'dllmain.c',
|
|
],
|
|
)
|