2018-11-08 19:43:07 +00:00
|
|
|
board_lib = static_library(
|
|
|
|
'board',
|
|
|
|
include_directories : inc,
|
|
|
|
implicit_include_directories : false,
|
2018-11-23 23:17:02 +00:00
|
|
|
c_pch : [
|
|
|
|
'../precompiled.c',
|
|
|
|
'../precompiled.h',
|
|
|
|
],
|
2018-11-08 19:43:07 +00:00
|
|
|
dependencies : [
|
|
|
|
capnhook.get_variable('hook_dep'),
|
|
|
|
],
|
|
|
|
sources : [
|
2019-03-04 01:02:13 +00:00
|
|
|
'guid.c',
|
|
|
|
'guid.h',
|
2018-11-08 19:44:34 +00:00
|
|
|
'io3.c',
|
|
|
|
'io3.h',
|
2018-11-21 01:26:11 +00:00
|
|
|
'sg-cmd.c',
|
|
|
|
'sg-cmd.h',
|
2019-02-26 18:45:41 +00:00
|
|
|
'sg-frame.c',
|
|
|
|
'sg-frame.h',
|
2018-11-21 01:27:05 +00:00
|
|
|
'sg-led.c',
|
|
|
|
'sg-led.h',
|
|
|
|
'sg-led-cmd.h',
|
2018-11-21 01:26:11 +00:00
|
|
|
'sg-nfc.c',
|
|
|
|
'sg-nfc.h',
|
|
|
|
'sg-nfc-cmd.h',
|
2019-02-26 18:47:41 +00:00
|
|
|
'sg-reader.c',
|
|
|
|
'sg-reader.h',
|
2019-01-17 19:07:59 +00:00
|
|
|
'slider-cmd.h',
|
|
|
|
'slider-frame.c',
|
|
|
|
'slider-frame.h',
|
2018-11-08 19:43:07 +00:00
|
|
|
],
|
|
|
|
)
|