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 : [
|
2019-05-09 18:28:30 +00:00
|
|
|
dinput8_lib,
|
|
|
|
dxguid_lib,
|
2019-05-04 00:36:23 +00:00
|
|
|
xinput_lib,
|
|
|
|
],
|
2019-05-09 18:28:30 +00:00
|
|
|
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',
|
2019-05-09 18:28:30 +00:00
|
|
|
'di.c',
|
|
|
|
'di.h',
|
2019-09-29 20:37:02 +00:00
|
|
|
'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',
|
2019-05-04 22:55:32 +00:00
|
|
|
'shifter.c',
|
|
|
|
'shifter.h',
|
2019-09-28 22:46:35 +00:00
|
|
|
'wnd.c',
|
|
|
|
'wnd.h',
|
2019-05-04 22:47:34 +00:00
|
|
|
'xi.c',
|
|
|
|
'xi.h',
|
2019-05-04 00:36:23 +00:00
|
|
|
],
|
|
|
|
)
|