mirror of
https://gitea.tendokyu.moe/TeamTofuShop/capnhook.git
synced 2026-09-22 22:38:12 +03:00
17 lines
306 B
Meson
17 lines
306 B
Meson
hooklib_lib = static_library(
|
|
'hooklib',
|
|
include_directories : inc,
|
|
c_pch : '../precompiled.h',
|
|
sources : [
|
|
'serial.c',
|
|
'serial.h',
|
|
'uart.c',
|
|
'uart.h',
|
|
],
|
|
)
|
|
|
|
hooklib_dep = declare_dependency(
|
|
link_with : hooklib_lib,
|
|
include_directories : inc,
|
|
)
|