mirror of
https://gitea.tendokyu.moe/Hay1tsme/segatools.git
synced 2025-02-12 09:02:57 +01:00
24 lines
488 B
Meson
24 lines
488 B
Meson
board_lib = static_library(
|
|
'board',
|
|
include_directories : inc,
|
|
implicit_include_directories : false,
|
|
c_pch : '../precompiled.h',
|
|
dependencies : [
|
|
capnhook.get_variable('hook_dep'),
|
|
],
|
|
sources : [
|
|
'io3.c',
|
|
'io3.h',
|
|
'sg-cmd.c',
|
|
'sg-cmd.h',
|
|
'sg-led.c',
|
|
'sg-led.h',
|
|
'sg-led-cmd.h',
|
|
'sg-nfc.c',
|
|
'sg-nfc.h',
|
|
'sg-nfc-cmd.h',
|
|
'sg-frame.c',
|
|
'sg-frame.h',
|
|
],
|
|
)
|