21 lines
406 B
Meson
21 lines
406 B
Meson
board_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,
|
|
jvs_lib,
|
|
],
|
|
sources : [
|
|
'bpreader.c',
|
|
'bpreader.h',
|
|
'najv4.c',
|
|
'najv4.h'
|
|
],
|
|
)
|