2023-01-02 23:35:53 -05:00
|
|
|
amcus_lib = static_library(
|
|
|
|
'gfxhook',
|
|
|
|
include_directories : inc,
|
|
|
|
implicit_include_directories : false,
|
|
|
|
c_pch : '../precompiled.h',
|
|
|
|
dependencies : [
|
|
|
|
capnhook.get_variable('hook_dep'),
|
|
|
|
],
|
|
|
|
link_with : [
|
|
|
|
hooklib_lib,
|
|
|
|
util_lib,
|
|
|
|
platform_lib,
|
|
|
|
],
|
|
|
|
sources : [
|
|
|
|
'config.c',
|
|
|
|
'config.h',
|
|
|
|
'iauth.c',
|
2023-01-04 14:24:44 -05:00
|
|
|
'iauth.h',
|
2023-01-02 23:35:53 -05:00
|
|
|
'amcus.c',
|
|
|
|
'amcus.h',
|
|
|
|
'guid.c',
|
|
|
|
],
|
|
|
|
)
|