1
0
mirror of https://gitea.tendokyu.moe/Hay1tsme/segatools.git synced 2024-11-14 21:47:38 +01:00
segatools-hay1tsme/idzio/meson.build

19 lines
368 B
Meson
Raw Normal View History

2019-05-04 02:36:23 +02:00
idzio_dll = shared_library(
'idzio',
name_prefix : '',
include_directories : inc,
implicit_include_directories : false,
vs_module_defs : 'idzio.def',
c_pch : '../precompiled.h',
dependencies : [
xinput_lib,
],
sources : [
2019-05-05 00:47:34 +02:00
'backend.h',
'dllmain.c',
2019-05-04 02:36:23 +02:00
'idzio.h',
2019-05-05 00:47:34 +02:00
'xi.c',
'xi.h',
2019-05-04 02:36:23 +02:00
],
)