1
0
mirror of synced 2025-02-22 05:09:48 +01:00
bananatools/board/meson.build
2024-12-19 14:00:51 -05:00

48 lines
940 B
Meson

board_lib = static_library(
'board',
include_directories : inc,
implicit_include_directories : false,
dependencies : [
capnhook.get_variable('hook_dep'),
],
link_with : [
hooklib_lib,
util_lib,
jvs_lib,
iccard_lib,
],
sources : [
'aime-dll.c',
'aime-dll.h',
'bpreader.c',
'bpreader.h',
'najv4.c',
'najv4.h',
'config.c',
'config.h',
'guid.c',
'guid.h',
'usio.c',
'usio.h',
'qr.c',
'qr.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',
'vfd-cmd.h',
'vfd-frame.c',
'vfd-frame.h',
'vfd.c',
'vfd.h',
],
)