2023-01-03 05:35:53 +01: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 20:24:44 +01:00
|
|
|
'iauth.h',
|
2023-01-03 05:35:53 +01:00
|
|
|
'amcus.c',
|
|
|
|
'amcus.h',
|
|
|
|
'guid.c',
|
|
|
|
],
|
|
|
|
)
|