Files
TeamTofuShop_capnhook/hooklib/meson.build
T
Decaf Code dfb7fbf219 Remove PCH source file
Newer versions of Meson create this automatically for MSVC builds.
2019-05-01 21:00:11 -04:00

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,
)