segatools/board/meson.build

42 lines
843 B
Meson
Raw Permalink Normal View History

2018-11-08 19:43:07 +00:00
board_lib = static_library(
'board',
include_directories : inc,
implicit_include_directories : false,
c_pch : '../precompiled.h',
2018-11-08 19:43:07 +00:00
dependencies : [
capnhook.get_variable('hook_dep'),
],
2019-10-19 19:51:10 +00:00
link_with : [
iccard_lib,
],
2018-11-08 19:43:07 +00:00
sources : [
2021-05-23 15:54:24 +00:00
'aime-dll.c',
'aime-dll.h',
2019-06-04 02:27:45 +00:00
'config.c',
'config.h',
2019-03-04 01:02:13 +00:00
'guid.c',
'guid.h',
'io3.c',
'io3.h',
'io4.c',
'io4.h',
'sg-cmd.c',
'sg-cmd.h',
2019-02-26 18:45:41 +00:00
'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',
2019-01-17 19:07:59 +00:00
'slider-cmd.h',
'slider-frame.c',
'slider-frame.h',
'vfd.c',
'vfd.h',
2018-11-08 19:43:07 +00:00
],
)