forked from Dniel97/segatools
bc297b2480
Going to add some ALLS stuff to libplatform and the ALLS hardware does not contain an AMEX board.
28 lines
519 B
Meson
28 lines
519 B
Meson
amex_lib = static_library(
|
|
'amex',
|
|
include_directories : inc,
|
|
implicit_include_directories : false,
|
|
c_pch : [
|
|
'../precompiled.c',
|
|
'../precompiled.h',
|
|
],
|
|
dependencies : [
|
|
capnhook.get_variable('hook_dep'),
|
|
],
|
|
sources : [
|
|
'ds.c',
|
|
'ds.h',
|
|
'eeprom.c',
|
|
'eeprom.h',
|
|
'gpio.c',
|
|
'gpio.h',
|
|
'guid.c',
|
|
'jvs.c',
|
|
'jvs.h',
|
|
'nvram.c',
|
|
'nvram.h',
|
|
'sram.c',
|
|
'sram.h',
|
|
],
|
|
)
|