segatools/zinput/meson.build
Tau b550efd4a9 zinput: Add stub DirectInput implementation
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.
2019-03-08 10:07:48 -05:00

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',
],
)