bananatools/board/meson.build

46 lines
905 B
Meson
Raw Normal View History

2023-01-03 04:35:53 +00:00
board_lib = static_library(
'board',
2023-01-03 04:35:53 +00:00
include_directories : inc,
implicit_include_directories : false,
c_pch : '../precompiled.h',
dependencies : [
capnhook.get_variable('hook_dep'),
],
link_with : [
hooklib_lib,
util_lib,
jvs_lib,
2023-09-18 08:00:09 +00:00
iccard_lib,
2023-01-03 04:35:53 +00:00
],
sources : [
2023-09-18 08:00:09 +00:00
'aime-dll.c',
'aime-dll.h',
2023-01-03 04:35:53 +00:00
'bpreader.c',
'bpreader.h',
'najv4.c',
'najv4.h',
'config.c',
'config.h',
'guid.c',
'guid.h',
'usio.c',
'usio.h',
'qr.c',
'qr.h',
2023-09-18 08:00:09 +00:00
'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.c',
'vfd.h',
2023-01-03 04:35:53 +00:00
],
)