segatools/board/meson.build
Tau bc2928804c board/sg-reader.c: Factor out NFC ass'y emu
Combine the NFC module emulator with the LED module emulator and
a virtual UART to build a higher-level reusable building block.
2019-02-26 13:49:29 -05:00

32 lines
655 B
Meson

board_lib = static_library(
'board',
include_directories : inc,
implicit_include_directories : false,
c_pch : [
'../precompiled.c',
'../precompiled.h',
],
dependencies : [
capnhook.get_variable('hook_dep'),
],
sources : [
'io3.c',
'io3.h',
'sg-cmd.c',
'sg-cmd.h',
'sg-frame.c',
'sg-frame.h',
'sg-led.c',
'sg-led.h',
'sg-led-cmd.h',
'sg-nfc.c',
'sg-nfc.h',
'sg-nfc-cmd.h',
'sg-reader.c',
'sg-reader.h',
'slider-cmd.h',
'slider-frame.c',
'slider-frame.h',
],
)