segatools/idzio/meson.build

33 lines
606 B
Meson
Raw Permalink Normal View History

2021-06-12 16:41:37 +00:00
idzio_lib = static_library(
2019-05-04 00:36:23 +00:00
'idzio',
name_prefix : '',
include_directories : inc,
implicit_include_directories : false,
c_pch : '../precompiled.h',
dependencies : [
dinput8_lib,
dxguid_lib,
2019-05-04 00:36:23 +00:00
xinput_lib,
],
link_with : [
util_lib,
],
2019-05-04 00:36:23 +00:00
sources : [
2019-05-04 22:47:34 +00:00
'backend.h',
2019-09-29 03:29:12 +00:00
'config.c',
'config.h',
'di.c',
'di.h',
'di-dev.c',
'di-dev.h',
2019-05-04 22:47:34 +00:00
'dllmain.c',
2019-05-04 00:36:23 +00:00
'idzio.h',
'shifter.c',
'shifter.h',
'wnd.c',
'wnd.h',
2019-05-04 22:47:34 +00:00
'xi.c',
'xi.h',
2019-05-04 00:36:23 +00:00
],
)