1
0
mirror of synced 2024-11-23 21:40:58 +01:00
bananatools/board/meson.build

49 lines
972 B
Meson
Raw Permalink Normal View History

2023-01-03 05:35:53 +01:00
board_lib = static_library(
'board',
2023-01-03 05:35:53 +01: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 10:00:09 +02:00
iccard_lib,
2023-01-03 05:35:53 +01:00
],
sources : [
2023-09-18 10:00:09 +02:00
'aime-dll.c',
'aime-dll.h',
2023-01-03 05:35:53 +01: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 10:00:09 +02: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',
2024-10-06 20:37:20 +02:00
'vfd-cmd.h',
'vfd-frame.c',
'vfd-frame.h',
2023-09-18 10:00:09 +02:00
'vfd.c',
'vfd.h',
2023-01-03 05:35:53 +01:00
],
)