1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2024-11-24 13:30:09 +01:00
segatools-dniel97/board/meson.build

40 lines
799 B
Meson
Raw Normal View History

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