forked from Dniel97/segatools
8ecbb860d8
We'll probably need to intercept the more traditional gethostbyname() API and friends at some point too.
30 lines
580 B
Meson
30 lines
580 B
Meson
hooklib_lib = static_library(
|
|
'hooklib',
|
|
include_directories : inc,
|
|
implicit_include_directories : false,
|
|
c_pch : '../precompiled.h',
|
|
dependencies : [
|
|
capnhook.get_variable('hook_dep'),
|
|
],
|
|
sources : [
|
|
'clock.c',
|
|
'clock.h',
|
|
'dll.c',
|
|
'dll.h',
|
|
'dns.c',
|
|
'dns.h',
|
|
'fdshark.c',
|
|
'fdshark.h',
|
|
'gfx.c',
|
|
'gfx.h',
|
|
'path.c',
|
|
'path.h',
|
|
'reg.c',
|
|
'reg.h',
|
|
'setupapi.c',
|
|
'setupapi.h',
|
|
'spike.c',
|
|
'spike.h',
|
|
],
|
|
)
|