forked from Dniel97/segatools
4936fc2bcc
This board also supports FeliCa and probably some other stuff. Need to analyze and implement these features later, Mifare card support only for now.
21 lines
424 B
Meson
21 lines
424 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-nfc.c',
|
|
'sg-nfc.h',
|
|
'sg-nfc-cmd.h',
|
|
'sg-frame.c',
|
|
'sg-frame.h',
|
|
],
|
|
)
|