mirror of
https://gitea.tendokyu.moe/TeamTofuShop/capnhook.git
synced 2026-09-22 22:38:12 +03:00
Project now builds in Visual Studio 2017, probably earlier versions too as long as they support enough of C99.
20 lines
351 B
Meson
20 lines
351 B
Meson
hooklib_lib = static_library(
|
|
'hooklib',
|
|
include_directories : inc,
|
|
c_pch : [
|
|
'../precompiled.c',
|
|
'../precompiled.h',
|
|
],
|
|
sources : [
|
|
'serial.c',
|
|
'serial.h',
|
|
'uart.c',
|
|
'uart.h',
|
|
],
|
|
)
|
|
|
|
hooklib_dep = declare_dependency(
|
|
link_with : hooklib_lib,
|
|
include_directories : inc,
|
|
)
|